Class: Trade::BuyersController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/trade/buyers_controller.rb

Instance Method Summary collapse

Instance Method Details

#searchObject



3
4
5
6
# File 'app/controllers/trade/buyers_controller.rb', line 3

def search
  @buyers = User.default_where('name-like': params[:q])
  render json: { results: @buyers.as_json(only: [:id], methods: [:name_detail]) }
end