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