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

pipeline.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: 73e44a33ebaed74053031fc30d9d5366c50e001f (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 Pipeline < BasePermissionType
        graphql_name 'PipelinePermissions'

        abilities :update_pipeline, :admin_pipeline, :destroy_pipeline
      end
    end
  end
end