Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/mutations')
-rw-r--r--app/graphql/mutations/snippets/create.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/mutations/snippets/create.rb b/app/graphql/mutations/snippets/create.rb
index 4e0e65d09a9..266a123de82 100644
--- a/app/graphql/mutations/snippets/create.rb
+++ b/app/graphql/mutations/snippets/create.rb
@@ -67,11 +67,11 @@ module Mutations
end
def authorized_resource?(project)
- Ability.allowed?(context[:current_user], :create_project_snippet, project)
+ Ability.allowed?(context[:current_user], :create_snippet, project)
end
def can_create_personal_snippet?
- Ability.allowed?(context[:current_user], :create_personal_snippet)
+ Ability.allowed?(context[:current_user], :create_snippet)
end
end
end