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