Class: SimpleAddress::StreetsController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/simple_address/streets_controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject



3
4
5
6
# File 'app/controllers/simple_address/streets_controller.rb', line 3

def index
  @streets = Street.search(params)
  render json: @streets.as_json(only: [:id, :name])
end