diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-05-13 16:22:50 -0500 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-05-13 16:22:50 -0500 |
commit | 9ef9e008feb99aaf0c4edc85bb76039eb46f0794 (patch) | |
tree | 435e4f57b7fc24e4ac2d2a49be301297cf352444 /app/controllers/jwt_controller.rb | |
parent | fc2d985bfaa156ad052858cd2025b0300327ff95 (diff) | |
download | gitlab-ce-9ef9e008feb99aaf0c4edc85bb76039eb46f0794.tar.gz |
Move JWT to Gitlab::JWT
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 599f62bd121..c203c50d1fb 100644 --- a/app/controllers/jwt_controller.rb +++ b/app/controllers/jwt_controller.rb @@ -3,7 +3,7 @@ class JwtController < ApplicationController skip_before_action :verify_authenticity_token SERVICES = { - 'container_registry' => JWT::ContainerRegistryAuthenticationService, + 'container_registry' => ::Gitlab::JWT::ContainerRegistryAuthenticationService, } def auth |