foodcoops/foodsoft

View on GitHub
app/controllers/users_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class UsersController < ApplicationController
  # Currently used to display users nick and ids for autocomplete
  def index
    @users = User.undeleted.natural_search(params[:q])
    respond_to do |format|
      format.json { render json: @users.map(&:token_attributes).to_json }
    end
  end
end