Class: SolidusAdmin::ShippingMethodsController
- Inherits:
-
BaseController
- Object
- ApplicationController
- BaseController
- SolidusAdmin::ShippingMethodsController
- Includes:
- ControllerHelpers::Search
- Defined in:
- app/controllers/solidus_admin/shipping_methods_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/shipping_methods_controller.rb', line 20 def destroy @shipping_methods = Spree::ShippingMethod.where(id: params[:id]) Spree::ShippingMethod.transaction { @shipping_methods.destroy_all } flash[:notice] = t('.success') redirect_back_or_to shipping_methods_path, status: :see_other end |
#index ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'app/controllers/solidus_admin/shipping_methods_controller.rb', line 7 def index shipping_methods = apply_search_to( Spree::ShippingMethod.order(id: :desc), param: :q, ) set_page_and_extract_portion_from(shipping_methods) respond_to do |format| format.html { render component('shipping_methods/index').new(page: @page) } end end |