aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/refinery/blog/admin/comments/_comment.html.erb
diff options
context:
space:
mode:
authorUģis Ozols <ugis.ozolss@gmail.com>2012-07-06 15:13:50 +0300
committerUģis Ozols <ugis.ozolss@gmail.com>2012-07-06 15:16:15 +0300
commit36881f83c74a12b754ef4e5c9b1781e6d39dc2a5 (patch)
tree4a9f64e3a9f6fe1cf78437b6f920ed3f4ee2cc1c /app/views/refinery/blog/admin/comments/_comment.html.erb
parentbb5a9adb50e8330f8b3af2ccfd5029243573e0a4 (diff)
downloadrefinerycms-blog-36881f83c74a12b754ef4e5c9b1781e6d39dc2a5.tar.gz
refinerycms-blog-36881f83c74a12b754ef4e5c9b1781e6d39dc2a5.tar.bz2
refinerycms-blog-36881f83c74a12b754ef4e5c9b1781e6d39dc2a5.zip
Split rejected and approved comment actions into separate controller actions.
Diffstat (limited to 'app/views/refinery/blog/admin/comments/_comment.html.erb')
-rw-r--r--app/views/refinery/blog/admin/comments/_comment.html.erb6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/views/refinery/blog/admin/comments/_comment.html.erb b/app/views/refinery/blog/admin/comments/_comment.html.erb
index c007294..fe72030 100644
--- a/app/views/refinery/blog/admin/comments/_comment.html.erb
+++ b/app/views/refinery/blog/admin/comments/_comment.html.erb
@@ -11,10 +11,12 @@
<%= link_to refinery_icon_tag('zoom.png'), refinery.blog_admin_comment_path(comment),
:title => t('.read') %>
<%= link_to refinery_icon_tag("cross.png"),
- refinery.rejected_blog_admin_comment_path(comment, :return_to => request.path.split('/').last.gsub(/^comments$/, 'index')),
+ refinery.reject_blog_admin_comment_path(comment),
+ :method => :post,
:title => t('.reject') unless comment.rejected? %>
<%= link_to refinery_icon_tag("tick.png"),
- refinery.approved_blog_admin_comment_path(comment, :return_to => request.path.split('/').last.gsub(/^comments$/, 'index')),
+ refinery.approve_blog_admin_comment_path(comment),
+ :method => :post,
:title => t('.approve') unless comment.approved? %>
</span>
</li>