mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-28 21:26:21 +00:00
12 lines
201 B
Ruby
12 lines
201 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class ActivityPub
|
||
|
module ModeratorConcern
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
included do
|
||
|
scope :moderators, ->() { where(moderator: true) }
|
||
|
end
|
||
|
end
|
||
|
end
|