about summary refs log tree commit diff
path: root/app/workers/removal_worker.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-08-22 21:55:56 +0200
committermultiple creatures <dev@multiple-creature.party>2020-02-27 13:43:13 -0600
commit422b59808b4818171e057e1a459de153816bf505 (patch)
tree5320830d5d3146c9032a0e975a069a4a1be76253 /app/workers/removal_worker.rb
parent165f53238655bf87f27981282ca8deb71474c86f (diff)
port tootsuite#11623 to monsterfork: Add soft delete for statuses for instant deletes through API
* Add soft delete for statuses to allow them to appear instant

* Allow reporting soft-deleted statuses and show them in the admin UI

* Change index for getting an account's statuses
Diffstat (limited to 'app/workers/removal_worker.rb')
-rw-r--r--app/workers/removal_worker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/removal_worker.rb b/app/workers/removal_worker.rb
index 14423a4fb..2a1eaa89b 100644
--- a/app/workers/removal_worker.rb
+++ b/app/workers/removal_worker.rb
@@ -4,7 +4,7 @@ class RemovalWorker
   include Sidekiq::Worker
 
   def perform(status_id, options = {})
-    RemoveStatusService.new.call(Status.find(status_id), **options.symbolize_keys)
+    RemoveStatusService.new.call(Status.with_discarded.find(status_id), **options.symbolize_keys)
   rescue ActiveRecord::RecordNotFound
     true
   end