mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-28 19:06:21 +00:00
11 lines
201 B
Ruby
11 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
|