Class: Workarea::Admin::TaxRatesController

Inherits:
ApplicationController show all
Defined in:
app/controllers/workarea/admin/tax_rates_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#current_user, #find_sort, #wrap_in_view_model, wrap_in_view_model

Methods included from Publishing

#allow_publishing!, #allow_publishing?, #set_publishing_options

Methods included from Visiting

#most_visited

Instance Method Details

#indexObject



6
7
8
9
10
11
# File 'app/controllers/workarea/admin/tax_rates_controller.rb', line 6

def index
  model = Tax::Category.find(params[:tax_category_id])
  @category = TaxCategoryViewModel.wrap(model, view_model_options)

  @rates = @category.rates.page(params[:page])
end