mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
11 lines
281 B
Ruby
11 lines
281 B
Ruby
# frozen_string_literal: true
|
|
|
|
Canaid::Permissions.register_for(Step) do
|
|
can :manage_step do |user, step|
|
|
if step.my_module
|
|
can_manage_my_module_steps?(user, step.my_module)
|
|
else
|
|
can_manage_protocol_draft_in_repository?(user, step.protocol)
|
|
end
|
|
end
|
|
end
|