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

runner.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: 096dcd272cc4eacfffb93f4b84d6e0277d9dbd62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Types
  module PermissionTypes
    module Ci
      class Runner < BasePermissionType
        graphql_name 'RunnerPermissions'

        abilities :read_runner, :update_runner, :delete_runner, :assign_runner
      end
    end
  end
end