debian-mirror-gitlab/app/graphql/mutations/issues/set_assignees.rb

16 lines
251 B
Ruby
Raw Normal View History

2020-10-24 23:57:45 +05:30
# 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