aboutsummaryrefslogblamecommitdiffstats
path: root/app/controllers/refinery/admin/blog/comments_controller.rb
blob: 6c1417ee4ecd92688fa3639a7a4c8facdd9d04dd (plain) (tree)
1
2
3
4
5
6
7
8


               
                                                            

                                           
 
                                         



                                             
                                                                                  
          




                                     
                                                                                 
            

                                     
                                                                     
                                  


                                                                                                                   




                                     
                                                                                 
            

                                     
                                                                     
                                 


                                                                                                                   






             
module Refinery
  module Admin
    module Blog
      class CommentsController < ::Refinery::AdminController
        
        cache_sweeper Refinery::BlogSweeper

        crudify :'refinery/blog/comment',
                :title_attribute => :name,
                :order => 'published_at DESC'

        def index
          @blog_comments = Refinery::Blog::Comment.unmoderated.page(params[:page])
          
          render :action => 'index'
        end

        def approved
          unless params[:id].present?
            @blog_comments = Refinery::Blog::Comment.approved.page(params[:page])
            
            render :action => 'index'
          else
            @blog_comment = Refinery::Blog::Comment.find(params[:id])
            @blog_comment.approve!
            flash[:notice] = t('approved', :scope => 'refinery.admin.blog.comments', :author => @blog_comment.name)
            
            redirect_to main_app.url_for(:action => params[:return_to] || 'index')
          end
        end

        def rejected
          unless params[:id].present?
            @blog_comments = Refinery::Blog::Comment.rejected.page(params[:page])
            
            render :action => 'index'
          else
            @blog_comment = Refinery::Blog::Comment.find(params[:id])
            @blog_comment.reject!
            flash[:notice] = t('rejected', :scope => 'refinery.admin.blog.comments', :author => @blog_comment.name)
            
            redirect_to main_app.url_for(:action => params[:return_to] || 'index')
          end
        end

      end
    end
  end
end