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

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

module Types
  module Ci
    # rubocop: disable Graphql/AuthorizeTypes
    class GroupEnvironmentScopeConnectionType < GraphQL::Types::Relay::BaseConnection
    end
    # rubocop: enable Graphql/AuthorizeTypes
  end
end