forked from Gitlink/forgeplus
9 lines
166 B
Plaintext
9 lines
166 B
Plaintext
|
|
if user.present?
|
||
|
|
json.id user.id
|
||
|
|
json.type user.type
|
||
|
|
json.name user.real_name
|
||
|
|
json.login user.login
|
||
|
|
json.image_url url_to_avatar(user)
|
||
|
|
else
|
||
|
|
json.nil!
|
||
|
|
end
|