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

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

module Types
  module PermissionTypes
    class Environment < BasePermissionType
      graphql_name 'EnvironmentPermissions'

      abilities :update_environment, :destroy_environment, :stop_environment
    end
  end
end