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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/ci/job_token_scope_type.rb')
-rw-r--r--app/graphql/types/ci/job_token_scope_type.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/app/graphql/types/ci/job_token_scope_type.rb b/app/graphql/types/ci/job_token_scope_type.rb
index 9f48298e1d3..37c0af944a7 100644
--- a/app/graphql/types/ci/job_token_scope_type.rb
+++ b/app/graphql/types/ci/job_token_scope_type.rb
@@ -7,9 +7,11 @@ module Types
class JobTokenScopeType < BaseObject
graphql_name 'CiJobTokenScopeType'
- field :projects, Types::ProjectType.connection_type, null: false,
- description: 'Allow list of projects that can be accessed by CI Job tokens created by this project.',
- method: :all_projects
+ field :projects,
+ Types::ProjectType.connection_type,
+ null: false,
+ description: 'Allow list of projects that can be accessed by CI Job tokens created by this project.',
+ method: :all_projects
end
end
# rubocop: enable Graphql/AuthorizeTypes