gitlab-org--gitlab-foss/app/policies/issuable_policy.rb

16 lines
361 B
Ruby
Raw Normal View History

2016-08-16 18:10:34 +00:00
class IssuablePolicy < BasePolicy
delegate { @subject.project }
2016-08-16 18:10:34 +00:00
desc "User is the assignee or author"
condition(:assignee_or_author) do
@user && @subject.assignee_or_author?(@user)
end
2016-08-16 18:10:34 +00:00
rule { assignee_or_author }.policy do
enable :read_issue
enable :update_issue
enable :read_merge_request
enable :update_merge_request
2016-08-16 18:10:34 +00:00
end
end