mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 20:00:49 +08:00
10 lines
244 B
Ruby
10 lines
244 B
Ruby
# 单表存储的信息可以放里面
|
|
json.array! users do |user|
|
|
json.username user.full_name
|
|
json.login user.login
|
|
json.user_id user.id
|
|
json.image_url url_to_avatar(user)
|
|
json.profile_completed user.profile_completed
|
|
end
|
|
|