aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/refinery/admin/blog/comments_controller.rb
blob: 9f78caa28eba7251b89427e2d94dd30cc0eb652c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
module Refinery
  module Admin
    module Blog
      class CommentsController < ::Admin::BaseController

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

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

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

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

      end
    end
  end
end