Class: MongoidForums::Admin::ForumsController
- Inherits:
-
BaseController
- Object
- BaseController
- MongoidForums::Admin::ForumsController
- Defined in:
- app/controllers/mongoid_forums/admin/forums_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/forums_controller.rb', line 59 def add_group group = Group.find(params[:group][:id]) @forum.moderator_groups << group @forum.save redirect_to admin_forum_path(@forum) end |
#create ⇒ Object
16 17 18 19 20 21 22 23 24 25 |
# File 'app/controllers/mongoid_forums/admin/forums_controller.rb', line 16 def create @forum = Forum.new(forum_params) if @forum.save flash[:notice] = "Forum created successfully" redirect_to [:admin, @forum] else flash.now.alert = "Forum 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/forums_controller.rb', line 47 def destroy @forum = Forum.find(params[:id]) if @forum.destroy flash[:notice] = "Forum destroyed successfully" redirect_to admin_forums_path else flash.now.alert = "Forum could not be destroyed" render :action => "index" end end |
#edit ⇒ Object
32 33 34 |
# File 'app/controllers/mongoid_forums/admin/forums_controller.rb', line 32 def edit @forum = Forum.find(params[:id]) end |
#index ⇒ Object
8 9 10 |
# File 'app/controllers/mongoid_forums/admin/forums_controller.rb', line 8 def index @forums = Forum.all end |
#new ⇒ Object
12 13 14 |
# File 'app/controllers/mongoid_forums/admin/forums_controller.rb', line 12 def new @forum = Forum.new end |
#remove_group ⇒ Object
67 68 69 70 71 72 73 |
# File 'app/controllers/mongoid_forums/admin/forums_controller.rb', line 67 def remove_group group = Group.find(params[:group][:id]) @forum.moderator_groups.delete(group) @forum.save redirect_to admin_forum_path(@forum) end |
#show ⇒ Object
27 28 29 30 |
# File 'app/controllers/mongoid_forums/admin/forums_controller.rb', line 27 def show @forum = Forum.find(params[:id]) @groups = Group.all.where(moderator: true).select{ |group| !@forum.moderator_groups.include?(group) } end |
#update ⇒ Object
36 37 38 39 40 41 42 43 44 45 |
# File 'app/controllers/mongoid_forums/admin/forums_controller.rb', line 36 def update @forum = Forum.find(params[:id]) if @forum.update(forum_params) flash[:notice] = "Forum updated successfully" redirect_to @forum else flash.now.alert = "Forum could not be updated" render :action => "edit" end end |