debian-mirror-gitlab/app/graphql/mutations/issues/set_assignees.rb
2020-10-24 23:57:45 +05:30

15 lines
251 B
Ruby

# frozen_string_literal: true
module Mutations
module Issues
class SetAssignees < Base
graphql_name 'IssueSetAssignees'
include Assignable
def update_service_class
::Issues::UpdateService
end
end
end
end