Class: Sprangular::CountriesController

Inherits:
BaseController
  • Object
show all
Defined in:
app/controllers/sprangular/countries_controller.rb

Instance Method Summary collapse

Methods inherited from BaseController

#invalid_resource!, #not_found, #unauthorized

Instance Method Details

#indexObject



2
3
4
5
6
# File 'app/controllers/sprangular/countries_controller.rb', line 2

def index
  @countries = Spree::Country
                .includes(:states)
                .order(:name)
end