aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/admin/blog/comments_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/admin/blog/comments_controller.rb')
-rw-r--r--app/controllers/admin/blog/comments_controller.rb40
1 files changed, 0 insertions, 40 deletions
diff --git a/app/controllers/admin/blog/comments_controller.rb b/app/controllers/admin/blog/comments_controller.rb
deleted file mode 100644
index 1868206..0000000
--- a/app/controllers/admin/blog/comments_controller.rb
+++ /dev/null
@@ -1,40 +0,0 @@
-module Admin
- module Blog
- class 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('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 = BlogComment.rejected
- render :action => 'index'
- else
- @blog_comment = 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 \ No newline at end of file