parsley/app/views/users/show.json.jbuilder

9 lines
150 B
Plaintext
Raw Normal View History

2018-03-30 17:08:09 -05:00
2018-06-09 12:36:46 -05:00
if current_user
json.extract! current_user, :id, :username, :email, :full_name, :admin
json.name current_user.display_name
else
json.nil!
end