mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-24 05:35:46 +08:00
12 lines
328 B
Ruby
12 lines
328 B
Ruby
json.organizations do
|
|
|
|
json.array! @organizations.each do |group|
|
|
json.array! group.each do |organization|
|
|
json.id organization.id
|
|
json.name organization.login
|
|
json.nickname organization.real_name
|
|
json.avatar_url url_to_avatar(organization)
|
|
json.website organization.website
|
|
end
|
|
end
|
|
end |