2020-01-01 13:55:28 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mutations
|
|
|
|
module Snippets
|
|
|
|
class Base < BaseMutation
|
|
|
|
field :snippet,
|
|
|
|
Types::SnippetType,
|
|
|
|
null: true,
|
|
|
|
description: 'The snippet after mutation'
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def find_object(id:)
|
|
|
|
GitlabSchema.object_from_id(id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def authorized_resource?(snippet)
|
2020-05-24 23:13:21 +05:30
|
|
|
return false if snippet.nil?
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
Ability.allowed?(context[:current_user], ability_for(snippet), snippet)
|
|
|
|
end
|
|
|
|
|
|
|
|
def ability_for(snippet)
|
|
|
|
"#{ability_name}_#{snippet.to_ability_name}".to_sym
|
|
|
|
end
|
|
|
|
|
|
|
|
def ability_name
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|