Class: SimpleAddress::CitiesController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- SimpleAddress::CitiesController
- Defined in:
- app/controllers/simple_address/cities_controller.rb
Instance Method Summary collapse
Instance Method Details
#index ⇒ Object
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 |