mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-25 02:06:22 +00:00
13 lines
269 B
Ruby
13 lines
269 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# Política de aceptación de colaboradorxs
|
||
|
CollaborationPolicy = Struct.new(:usuarie, :collaboration) do
|
||
|
def collaborate?
|
||
|
collaboration.site.invitadxs?
|
||
|
end
|
||
|
|
||
|
def accept_collaboration?
|
||
|
collaboration.site.invitadxs?
|
||
|
end
|
||
|
end
|