Sha256: 02f255ee3385875daea65a702885a2525e4965ba385738bdc4f55c88bae2897b
Contents?: true
Size: 436 Bytes
Versions: 1
Compression:
Stored size: 436 Bytes
Contents
class Admin::QuestionCategoriesController < Admin::BaseController resource_controller helper 'spree/base' new_action.response do |format| format.html {render :action => :new, :layout => false} end update.response do |format| format.html { redirect_to admin_question_categories_path } end create.response do |format| format.html { redirect_to edit_admin_question_category_path(@question_category) } end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
spree_faq-3.0.3 | app/controllers/admin/question_categories_controller.rb |