summaryrefslogtreecommitdiff
path: root/app/graphql/types/projects/services/base_service_type.rb
blob: 9a48aafa5a8f5834144092660052cc3d8272b979 (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