2011-05-14 19:41:46 +02:00
|
|
|
class UsersController < ApplicationController
|
|
|
|
|
|
|
|
# Currently used to display users nick and ids for autocomplete
|
|
|
|
def index
|
2013-09-20 23:18:06 +02:00
|
|
|
@users = User.natural_search(params[:q])
|
2011-05-14 19:41:46 +02:00
|
|
|
respond_to do |format|
|
2013-10-29 18:46:55 +01:00
|
|
|
format.json { render :json => @users.map(&:token_attributes) }
|
2011-05-14 19:41:46 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|