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
path: root/app
diff options
context:
space:
mode:
authorYorick Peterse <yorickpeterse@gmail.com>2019-03-04 21:37:03 +0300
committerYorick Peterse <yorickpeterse@gmail.com>2019-03-04 21:37:03 +0300
commit9faf957bd3cfc5cdc248c3e862579902cc1da39c (patch)
treeb67e295910ae8bad648e04a7975d2e9d1e7df2bf /app
parentd8b4e585a131879d3094dea287d19bfa0cf18333 (diff)
parentb11d018bd59a3c94086dbeb11f38db81e441a1e2 (diff)
Merge branch 'security-protect-private-repo-information' into 'master'
Fix leaking private repository information in API See merge request gitlab/gitlabhq!2881
Diffstat (limited to 'app')
-rw-r--r--app/graphql/types/project_type.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/graphql/types/project_type.rb b/app/graphql/types/project_type.rb
index 3ef0cc5020c..b96c2f3afb2 100644
--- a/app/graphql/types/project_type.rb
+++ b/app/graphql/types/project_type.rb
@@ -16,7 +16,6 @@ module Types
field :description, GraphQL::STRING_TYPE, null: true
- field :default_branch, GraphQL::STRING_TYPE, null: true
field :tag_list, GraphQL::STRING_TYPE, null: true
field :ssh_url_to_repo, GraphQL::STRING_TYPE, null: true
@@ -59,7 +58,6 @@ module Types
end
field :import_status, GraphQL::STRING_TYPE, null: true
- field :ci_config_path, GraphQL::STRING_TYPE, null: true
field :only_allow_merge_if_pipeline_succeeds, GraphQL::BOOLEAN_TYPE, null: true
field :request_access_enabled, GraphQL::BOOLEAN_TYPE, null: true