Class: Spree::Api::StatesController
- Inherits:
- 
      BaseController
      
        - Object
- ActionController::Base
- BaseController
- Spree::Api::StatesController
 
- Defined in:
- app/controllers/spree/api/states_controller.rb
Instance Attribute Summary
Attributes inherited from BaseController
Instance Method Summary collapse
Instance Method Details
#index ⇒ Object
| 6 7 8 9 10 11 12 13 14 15 | # File 'app/controllers/spree/api/states_controller.rb', line 6 def index @states = scope.ransack(params[:q]).result. includes(:country).order('name ASC') if params[:page] || params[:per_page] @states = @states.page(params[:page]).per(params[:per_page]) end respond_with(@states) end | 
#show ⇒ Object
| 17 18 19 20 | # File 'app/controllers/spree/api/states_controller.rb', line 17 def show @state = scope.find(params[:id]) respond_with(@state) end |