summaryrefslogtreecommitdiff
path: root/app/services/auth
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-05-22 14:14:12 -0500
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-05-23 00:34:51 +0200
commit646018a40e7d29682f31e774f453a6b3427b4216 (patch)
treefca689ab7bf8336099799556a57ddc4095d54d2c /app/services/auth
parentb4c47368bfece10150293566b6bf5faeb324d5c4 (diff)
downloadgitlab-ce-646018a40e7d29682f31e774f453a6b3427b4216.tar.gz
Fix the CI login to Container Registry (the gitlab-ci-token user)
Diffstat (limited to 'app/services/auth')
-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 f807b8ec09a..2bbab643e69 100644
--- a/app/services/auth/container_registry_authentication_service.rb
+++ b/app/services/auth/container_registry_authentication_service.rb
@@ -6,7 +6,7 @@ module Auth
return error('not found', 404) unless registry.enabled
if params[:offline_token]
- return error('unauthorized', 401) unless current_user
+ return error('unauthorized', 401) unless current_user || project
else
return error('forbidden', 403) unless scope
end