Welcome to mirror list, hosted at ThFree Co, Russian Federation.

job.rb « ci « permission_types « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9a85317e67c7f9ff2b7c6a28566c7eef79ae9d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module Types
  module PermissionTypes
    module Ci
      class Job < BasePermissionType
        graphql_name 'JobPermissions'

        abilities :read_job_artifacts, :read_build
        ability_field :update_build, calls_gitaly: true
      end
    end
  end
end