Class: SimpleAddress::CitiesController

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

Instance Method Summary collapse

Instance Method Details

#indexObject



4
5
6
7
# File 'app/controllers/simple_address/cities_controller.rb', line 4

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