2020-07-28 23:09:34 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mutations
|
|
|
|
module Issues
|
|
|
|
class SetLocked < Base
|
|
|
|
graphql_name 'IssueSetLocked'
|
|
|
|
|
|
|
|
argument :locked,
|
|
|
|
GraphQL::BOOLEAN_TYPE,
|
|
|
|
required: true,
|
2021-03-08 18:12:59 +05:30
|
|
|
description: 'Whether or not to lock discussion on the issue.'
|
2020-07-28 23:09:34 +05:30
|
|
|
|
|
|
|
def resolve(project_path:, iid:, locked:)
|
|
|
|
issue = authorized_find!(project_path: project_path, iid: iid)
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
::Issues::UpdateService.new(project: issue.project, current_user: current_user, params: { discussion_locked: locked })
|
2020-07-28 23:09:34 +05:30
|
|
|
.execute(issue)
|
|
|
|
|
|
|
|
{
|
|
|
|
issue: issue,
|
|
|
|
errors: errors_on_object(issue)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|