aboutsummaryrefslogblamecommitdiffstats
path: root/app/controllers/admin/blog/comments_controller.rb
blob: 0dc1db5981a1073075d4b752883336044171d757 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

                                                             

                                    
                                       
 




                                            
              








                                                                                       


              








                                                                                       


     
class Admin::Blog::CommentsController < Admin::BaseController

  crudify :blog_comment,
          :title_attribute => :name,
          :order => 'published_at DESC'

  def index
    @blog_comments = BlogComment.unmoderated
    render :action => 'index'
  end

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

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

end