2020-01-01 13:55:28 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mutations
|
|
|
|
module Snippets
|
|
|
|
class Update < Base
|
|
|
|
graphql_name 'UpdateSnippet'
|
|
|
|
|
|
|
|
argument :id,
|
|
|
|
GraphQL::ID_TYPE,
|
|
|
|
required: true,
|
|
|
|
description: 'The global id of the snippet to update'
|
|
|
|
|
|
|
|
argument :title, GraphQL::STRING_TYPE,
|
|
|
|
required: false,
|
|
|
|
description: 'Title of the snippet'
|
|
|
|
|
|
|
|
argument :file_name, GraphQL::STRING_TYPE,
|
|
|
|
required: false,
|
|
|
|
description: 'File name of the snippet'
|
|
|
|
|
|
|
|
argument :content, GraphQL::STRING_TYPE,
|
|
|
|
required: false,
|
|
|
|
description: 'Content of the snippet'
|
|
|
|
|
|
|
|
argument :description, GraphQL::STRING_TYPE,
|
|
|
|
required: false,
|
|
|
|
description: 'Description of the snippet'
|
|
|
|
|
|
|
|
argument :visibility_level, Types::VisibilityLevelsEnum,
|
|
|
|
description: 'The visibility level of the snippet',
|
|
|
|
required: false
|
|
|
|
|
|
|
|
def resolve(args)
|
|
|
|
snippet = authorized_find!(id: args.delete(:id))
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
result = ::Snippets::UpdateService.new(snippet.project,
|
2020-01-01 13:55:28 +05:30
|
|
|
context[:current_user],
|
2020-03-13 15:44:24 +05:30
|
|
|
args).execute(snippet)
|
|
|
|
snippet = result.payload[:snippet]
|
2020-01-01 13:55:28 +05:30
|
|
|
|
|
|
|
{
|
2020-03-13 15:44:24 +05:30
|
|
|
snippet: result.success? ? snippet : snippet.reset,
|
2020-01-01 13:55:28 +05:30
|
|
|
errors: errors_on_object(snippet)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def ability_name
|
|
|
|
"update"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|