Class: SolidusAdmin::StockLocationsController
- Inherits:
-
BaseController
- Object
- ApplicationController
- BaseController
- SolidusAdmin::StockLocationsController
- Includes:
- ControllerHelpers::Search
- Defined in:
- app/controllers/solidus_admin/stock_locations_controller.rb
Instance Method Summary collapse
Methods included from ComponentsHelper
Instance Method Details
#destroy ⇒ Object
20 21 22 23 24 25 26 27 |
# File 'app/controllers/solidus_admin/stock_locations_controller.rb', line 20 def destroy @stock_locations = Spree::StockLocation.where(id: params[:id]) Spree::StockLocation.transaction { @stock_locations.destroy_all } flash[:notice] = t('.success') redirect_back_or_to stock_locations_path, status: :see_other end |
#index ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'app/controllers/solidus_admin/stock_locations_controller.rb', line 7 def index stock_locations = apply_search_to( Spree::StockLocation.order(id: :desc), param: :q, ) set_page_and_extract_portion_from(stock_locations) respond_to do |format| format.html { render component('stock_locations/index').new(page: @page) } end end |