summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/gitlab/backend/grack_auth.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/gitlab/backend/grack_auth.rb b/lib/gitlab/backend/grack_auth.rb
index 5966d394b62..e8cb0c77fb4 100644
--- a/lib/gitlab/backend/grack_auth.rb
+++ b/lib/gitlab/backend/grack_auth.rb
@@ -181,11 +181,12 @@ module Grack
def render_grack_auth_ok
if @user.present?
- body = Gitlab::ShellEnv.gl_id(@user)
+ gl_id = Gitlab::ShellEnv.gl_id(@user)
else
- body = ''
+ gl_id = ''
end
- [200, { "Content-Type" => "text/plain" }, [body]]
+
+ [200, { "Content-Type" => "application/json" }, [JSON.dump({'GL_ID' => gl_id})]]
end
def render_not_found