Class: Spree::Admin::IntegrationMappingsController

Inherits:
BaseController
  • Object
show all
Defined in:
app/controllers/spree/admin/integration_mappings_controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject



7
8
9
10
11
12
# File 'app/controllers/spree/admin/integration_mappings_controller.rb', line 7

def index
  @mappings = @integration.integration_mappings
                          .order(updated_at: :desc)
                          .page(params[:page])
                          .per(params[:per_page] || 25)
end