Class: MongoidForums::Admin::CategoriesController
- Inherits:
-
BaseController
- Object
- BaseController
- MongoidForums::Admin::CategoriesController
- Defined in:
- app/controllers/mongoid_forums/admin/categories_controller.rb
Instance Method Summary collapse
-
#add_group ⇒ Object
Temporary Methods - Try Not To Cringe Too Much <3 ###.
- #create ⇒ Object
- #destroy ⇒ Object
- #edit ⇒ Object
- #index ⇒ Object
- #new ⇒ Object
- #remove_group ⇒ Object
- #show ⇒ Object
- #update ⇒ Object
Instance Method Details
#add_group ⇒ Object
Temporary Methods - Try Not To Cringe Too Much <3 ###
59 60 61 62 63 64 65 |
# File 'app/controllers/mongoid_forums/admin/categories_controller.rb', line 59 def add_group group = Group.find(params[:group][:id]) @category.moderator_groups << group @category.save redirect_to admin_category_path(@category) end |
#create ⇒ Object
22 23 24 25 26 27 28 29 30 |
# File 'app/controllers/mongoid_forums/admin/categories_controller.rb', line 22 def create if @category = Category.create(category_params) flash[:notice] = "Category created successfully" redirect_to admin_categories_path else flash.now.alert = "Category could not be created" render :action => "new" end end |
#destroy ⇒ Object
47 48 49 50 51 52 53 54 55 56 |
# File 'app/controllers/mongoid_forums/admin/categories_controller.rb', line 47 def destroy @category = Category.find(params[:id]) if @category.destroy flash[:notice] = "Category destroyed successfully" redirect_to admin_categories_path else flash.now.alert = "Category could not be destroyed" render :action => "index" end end |
#edit ⇒ Object
32 33 34 |
# File 'app/controllers/mongoid_forums/admin/categories_controller.rb', line 32 def edit @category = Category.find(params[:id]) end |
#index ⇒ Object
8 9 10 11 |
# File 'app/controllers/mongoid_forums/admin/categories_controller.rb', line 8 def index @forums = Forum.asc(:position) @categories = Category.asc(:position) end |
#new ⇒ Object
18 19 20 |
# File 'app/controllers/mongoid_forums/admin/categories_controller.rb', line 18 def new @category = Category.new end |
#remove_group ⇒ Object
67 68 69 70 71 72 73 |
# File 'app/controllers/mongoid_forums/admin/categories_controller.rb', line 67 def remove_group group = Group.find(params[:group][:id]) @category.moderator_groups.delete(group) @category.save redirect_to admin_category_path(@category) end |
#show ⇒ Object
13 14 15 16 |
# File 'app/controllers/mongoid_forums/admin/categories_controller.rb', line 13 def show @category = Category.find(params[:id]) @groups = Group. all.where(moderator: true).select{ |group| !@category.moderator_groups.include?(group) } end |
#update ⇒ Object
36 37 38 39 40 41 42 43 44 45 |
# File 'app/controllers/mongoid_forums/admin/categories_controller.rb', line 36 def update @category = Category.find(params[:id]) if @category.update(category_params) flash[:notice] = "Category updated successfully" redirect_to admin_categories_path else flash.now.alert = "Category could not be updated" render :action => "edit" end end |