Commit 72119e7f authored by Phil Hughes's avatar Phil Hughes

Merge branch 'add-current_user-avatar_url-to-gon' into 'master'

Add current_user_avatar_url to gon

See merge request !11474
parents 755bc44e e6a4b8c1
...@@ -17,6 +17,7 @@ module Gitlab ...@@ -17,6 +17,7 @@ module Gitlab
gon.current_user_id = current_user.id gon.current_user_id = current_user.id
gon.current_username = current_user.username gon.current_username = current_user.username
gon.current_user_fullname = current_user.name gon.current_user_fullname = current_user.name
gon.current_user_avatar_url = current_user.avatar_url
end end
end end
end end
......
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