about summary refs log tree commit diff
path: root/app/models/account.rb
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2019-07-24 16:39:58 -0500
committermultiple creatures <dev@multiple-creature.party>2019-07-24 16:39:58 -0500
commitcefcad113031ce580121d33c489d33f59e459fc4 (patch)
treeaf6e202d39a56737a5a992a103068b6e4366921a /app/models/account.rb
parent8f6e737f38c98bbe431c0c60a42208ba185d94e6 (diff)
transparancy - log use of admin related method calls & activitypub auto-rejections to a logger account
Diffstat (limited to 'app/models/account.rb')
-rw-r--r--app/models/account.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/models/account.rb b/app/models/account.rb
index efa6b8fbd..8d5e5ee1a 100644
--- a/app/models/account.rb
+++ b/app/models/account.rb
@@ -212,6 +212,7 @@ class Account < ApplicationRecord
   end
 
   def force_unlisted!
+    LogWorker.perform_async("\xf0\x9f\x93\xb5 Forced the media of account '#{@account.acct}' to be unlisted.")
     transaction do
       update!(force_unlisted: true)
       Status.where(account_id: id, visibility: :public).in_batches.update_all(visibility: :unlisted)
@@ -219,6 +220,7 @@ class Account < ApplicationRecord
   end
 
   def force_sensitive!
+    LogWorker.perform_async("\xf0\x9f\x94\x9e Forced the media of account '#{@account.acct}' to be marked sensitive.")
     transaction do
       update!(force_sensitive: true)
       Status.where(account_id: id, sensitive: false).in_batches.update_all(sensitive: true)
@@ -226,6 +228,7 @@ class Account < ApplicationRecord
   end
 
   def allow_public!
+    LogWorker.perform_async("\xf0\x9f\x86\x97 No longer forcing the media of account '#{@account.acct}' to be marked sensitive.")
     update!(force_unlisted: false)
   end
 
@@ -240,10 +243,12 @@ class Account < ApplicationRecord
   def silence!(date = nil)
     date ||= Time.now.utc
     update!(silenced_at: date)
+    LogWorker.perform_async("\xf0\x9f\x94\x87 Silenced account '#{@account.acct}'.")
   end
 
   def unsilence!
     update!(silenced_at: nil)
+    LogWorker.perform_async("\xf0\x9f\x94\x8a Unsilenced account '#{@account.acct}'.")
   end
 
   def suspended?