blob: a3df2359d4e9abbb655d9540015fbd074400d4e6 (
plain) (
tree)
|
|
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::BlogComment.unmoderated.page(params[:page])
render :action => 'index'
end
def approved
unless params[:id].present?
@blog_comments = Refinery::BlogComment.approved.page(params[:page])
render :action => 'index'
else
@blog_comment = Refinery::BlogComment.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::BlogComment.rejected.page(params[:page])
render :action => 'index'
else
@blog_comment = Refinery::BlogComment.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
|