diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-05-14 11:11:48 -0500 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-05-14 11:11:48 -0500 |
commit | 63cdf1aeb04b9694c0b6d44b1141868fcc5a0904 (patch) | |
tree | 120712f0af4d3dc9e8916dc39e3052fbf4d6b000 /app/controllers/jwt_controller.rb | |
parent | 774a5107822d3d451b88ed3a7257aeac8d91c35a (diff) | |
download | gitlab-ce-63cdf1aeb04b9694c0b6d44b1141868fcc5a0904.tar.gz |
Use Auth::ContainerRegistryAuthenticationService
Diffstat (limited to 'app/controllers/jwt_controller.rb')
-rw-r--r-- | app/controllers/jwt_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/jwt_controller.rb b/app/controllers/jwt_controller.rb index e067f59808a..e5affb1adc9 100644 --- a/app/controllers/jwt_controller.rb +++ b/app/controllers/jwt_controller.rb @@ -4,7 +4,7 @@ class JwtController < ApplicationController before_action :authenticate_project_or_user SERVICES = { - 'container_registry' => ::Gitlab::JWT::ContainerRegistryAuthenticationService, + 'container_registry' => Auth::ContainerRegistryAuthenticationService, } def auth |