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
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/jwt_controller.rb')
-rw-r--r--app/controllers/jwt_controller.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/controllers/jwt_controller.rb b/app/controllers/jwt_controller.rb
index 84f5632854b..7211eebdb4b 100644
--- a/app/controllers/jwt_controller.rb
+++ b/app/controllers/jwt_controller.rb
@@ -78,7 +78,11 @@ class JwtController < ApplicationController
end
def additional_params
- { scopes: scopes_param, deploy_token: @authentication_result.deploy_token }.compact
+ {
+ scopes: scopes_param,
+ deploy_token: @authentication_result.deploy_token,
+ auth_type: @authentication_result.type
+ }.compact
end
# We have to parse scope here, because Docker Client does not send an array of scopes,