debian-mirror-gitlab/app/graphql/mutations/ci/job/unschedule.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
575 B
Ruby
Raw Normal View History

2021-10-27 15:23:28 +05:30
# frozen_string_literal: true
module Mutations
module Ci
module Job
class Unschedule < Base
graphql_name 'JobUnschedule'
field :job,
Types::Ci::JobType,
null: true,
description: 'Job after the mutation.'
authorize :update_build
def resolve(id:)
job = authorized_find!(id: id)
::Ci::BuildUnscheduleService.new(job, current_user).execute
{
job: job,
errors: errors_on_object(job)
}
end
end
end
end
end