You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
206 B
7 lines
206 B
6 years ago
|
#json.partial! "users/users_list", users: @users
|
||
|
json.array! @users do |user|
|
||
|
json.user_id user.id
|
||
|
json.identify user.identity
|
||
|
json.nickname user.nickname
|
||
|
json.school_name user.school_name
|
||
|
end
|