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

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

module Types
  module Projects
    module Services
      # TODO: Remove in 17.0, see https://gitlab.com/gitlab-org/gitlab/-/merge_requests/108418
      class BaseServiceType < BaseObject
        graphql_name 'BaseService'

        implements Types::Projects::ServiceType

        authorize :admin_project
      end
    end
  end
end