socialforge/app/views/at/show.json.erb

7 lines
272 B
Plaintext
Raw Normal View History

2015-12-14 17:13:57 +08:00
[
<% @users && @users.each_with_index do |person,index| %>
2015-12-15 14:52:24 +08:00
{"id":<%=index%>, "userid": <%=person.id%>, "name": "<%=person.show_name%>", "login": "<%=person.login%>", "searchKey": "<%=person.get_at_show_name%>"}
2015-12-14 17:13:57 +08:00
<%= index != @users.size-1 ? ',' : '' %>
<% end %>
]