mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 11:46:22 +00:00
16 lines
436 B
Ruby
16 lines
436 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Solo les usuaries pueden moderar comentarios
|
|
ActivityPubPolicy = Struct.new(:usuarie, :activity_pub) do
|
|
ActivityPub.events.each do |event|
|
|
define_method(:"#{event}?") do
|
|
activity_pub.site.usuarie? usuarie
|
|
end
|
|
end
|
|
|
|
# En este paso tenemos varias instancias por moderar pero todas son
|
|
# del mismo sitio.
|
|
def action_on_several?
|
|
activity_pub.first.site.usuarie? usuarie
|
|
end
|
|
end
|