Commit 6912f21e authored by GitLab's avatar GitLab

Send GL_ID to gitlab-git-http-server as JSON

parent ae9e5eea
...@@ -181,11 +181,12 @@ module Grack ...@@ -181,11 +181,12 @@ module Grack
def render_grack_auth_ok def render_grack_auth_ok
if @user.present? if @user.present?
body = Gitlab::ShellEnv.gl_id(@user) gl_id = Gitlab::ShellEnv.gl_id(@user)
else else
body = '' gl_id = ''
end end
[200, { "Content-Type" => "text/plain" }, [body]]
[200, { "Content-Type" => "application/json" }, [JSON.dump({'GL_ID' => gl_id})]]
end end
def render_not_found def render_not_found
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment