From aab978cca1aed46c8430b4b906a667010e74935e Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Thu, 13 Feb 2020 15:51:40 -0600 Subject: allow moderators to change sensitive content flag on posts without media attachments --- app/models/form/status_batch.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'app') diff --git a/app/models/form/status_batch.rb b/app/models/form/status_batch.rb index 933dfdaca..ceae06023 100644 --- a/app/models/form/status_batch.rb +++ b/app/models/form/status_batch.rb @@ -18,10 +18,8 @@ class Form::StatusBatch private def change_sensitive(sensitive) - media_attached_status_ids = MediaAttachment.where(status_id: status_ids).pluck(:status_id) - ApplicationRecord.transaction do - Status.where(id: media_attached_status_ids).reorder(nil).find_each do |status| + Status.where(id: status_ids).reorder(nil).find_each do |status| status.update!(sensitive: sensitive) log_action :update, status end -- cgit