From 4c91638f7a3e83826cbeda83698812ed0a5e1df5 Mon Sep 17 00:00:00 2001 From: r888888888 Date: Thu, 9 Jun 2016 14:12:55 -0700 Subject: [PATCH] fixes #2599: Show more info when a BUR is approved/rejected --- app/models/bulk_update_request.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models/bulk_update_request.rb b/app/models/bulk_update_request.rb index ac59824ad..a8e40b81a 100644 --- a/app/models/bulk_update_request.rb +++ b/app/models/bulk_update_request.rb @@ -137,7 +137,7 @@ class BulkUpdateRequest < ActiveRecord::Base def update_forum_topic_for_approve if forum_topic forum_topic.posts.create( - :body => "The bulk update request ##{id} has been approved." + :body => "\"The bulk update request ##{id} has been approved.\":/bulk_update_requests/#{id}" ) end end @@ -145,7 +145,7 @@ class BulkUpdateRequest < ActiveRecord::Base def update_forum_topic_for_reject if forum_topic forum_topic.posts.create( - :body => "The bulk update request ##{id} has been rejected." + :body => "\"The bulk update request ##{id} has been rejected.\":/bulk_update_requests/#{id}" ) end end