5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-19 08:30:49 +00:00
panel/app/policies/collaboration_policy.rb

13 lines
289 B
Ruby

# frozen_string_literal: true
# Política de aceptación de colaboradorxs
CollaborationPolicy = Struct.new(:usuarie, :collaboration) do
def collaborate?
collaboration.site.colaboracion_anonima
end
def accept_collaboration?
collaboration.site.colaboracion_anonima
end
end