summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-05-14 14:22:45 -0500
committerKamil Trzcinski <ayufan@ayufan.eu>2016-05-14 14:22:45 -0500
commitd40bd7419f9ca0f7caedef05209b86e7431dd882 (patch)
treecf7355816a4c7acd6ce90ef105ad795d70b64c92
parent46cc04ce7a374127dd617c8fd2671efed2819cda (diff)
downloadgitlab-ce-d40bd7419f9ca0f7caedef05209b86e7431dd882.tar.gz
Fix authentication service
-rw-r--r--app/services/auth/container_registry_authentication_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/auth/container_registry_authentication_service.rb b/app/services/auth/container_registry_authentication_service.rb
index 0323a42b697..100f7cbae28 100644
--- a/app/services/auth/container_registry_authentication_service.rb
+++ b/app/services/auth/container_registry_authentication_service.rb
@@ -54,7 +54,7 @@ module Auth
def can_access?(requested_project, requested_action)
case requested_action
when 'pull'
- requested_project.public? || requested_project == project || can?(current_user, :read_container_registry, requested_project)
+ requested_project == project || can?(current_user, :read_container_registry, requested_project)
when 'push'
requested_project == project || can?(current_user, :create_container_registry, requested_project)
else