20 lines
455 B
Ruby
20 lines
455 B
Ruby
module UsersHelper
|
|
|
|
## this one is for building our custom JSON autocomplete format for typeahead
|
|
def autocomplete_user_array_json(users)
|
|
temp = []
|
|
users.each do |u|
|
|
user = {}
|
|
user['id'] = u.id
|
|
user['label'] = u.name
|
|
user['value'] = u.name
|
|
user['profile'] = u.image.url(:thumb)
|
|
user['mapCount'] = u.maps.count
|
|
user['rtype'] = "mapper"
|
|
|
|
temp.push user
|
|
end
|
|
return temp
|
|
end
|
|
|
|
end
|