Update snippet authorization
Allow authors and admins to update the visibility level of personal and project snippets.
This commit is contained in:
parent
9623b71a39
commit
5710c1aaf8
1 changed files with 4 additions and 2 deletions
|
@ -225,13 +225,15 @@ class Ability
|
|||
|
||||
[:issue, :note, :project_snippet, :personal_snippet, :merge_request].each do |name|
|
||||
define_method "#{name}_abilities" do |user, subject|
|
||||
if subject.author == user
|
||||
[
|
||||
if subject.author == user || user.is_admin?
|
||||
rules = [
|
||||
:"read_#{name}",
|
||||
:"write_#{name}",
|
||||
:"modify_#{name}",
|
||||
:"admin_#{name}"
|
||||
]
|
||||
rules.push(:change_visibility_level) if subject.is_a?(Snippet)
|
||||
rules
|
||||
elsif subject.respond_to?(:assignee) && subject.assignee == user
|
||||
[
|
||||
:"read_#{name}",
|
||||
|
|
Loading…
Reference in a new issue