Skip to content
Snippets Groups Projects
Commit 16dcf356 authored by GitLab's avatar GitLab
Browse files

Fix style points

To make Rubocop and Douwe happy
parent 6912f21e
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -180,13 +180,7 @@ module Grack
end
 
def render_grack_auth_ok
if @user.present?
gl_id = Gitlab::ShellEnv.gl_id(@user)
else
gl_id = ''
end
[200, { "Content-Type" => "application/json" }, [JSON.dump({'GL_ID' => gl_id})]]
[200, { "Content-Type" => "application/json" }, [JSON.dump({ 'GL_ID' => Gitlab::ShellEnv.gl_id(@user) })]]
end
 
def render_not_found
Loading
Loading
Loading
Loading
@@ -17,7 +17,12 @@ module Gitlab
end
 
def gl_id(user)
"user-#{user.id}"
if user.present?
"user-#{user.id}"
else
# This empty string is used in the render_grack_auth_ok method
""
end
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment