about summary refs log tree commit diff
path: root/app/helpers
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2019-11-10 23:05:15 +0100
committermultiple creatures <dev@multiple-creature.party>2020-02-21 01:24:25 -0600
commit99076be1ba2e583450f78a7a0ec965c3034a3aab (patch)
treea108ad2c64f7d4f1ea2448af672dd1ef586e59f0 /app/helpers
parente5bb8b27e96a3a803aa5b6eda783908e5d49c341 (diff)
port tootsuite#12303 to monsterfork: Fix broken admin audit log in whitelist mode
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/admin/action_logs_helper.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/helpers/admin/action_logs_helper.rb b/app/helpers/admin/action_logs_helper.rb
index c90818318..80fee2ded 100644
--- a/app/helpers/admin/action_logs_helper.rb
+++ b/app/helpers/admin/action_logs_helper.rb
@@ -44,6 +44,8 @@ module Admin::ActionLogsHelper
       'flag'
     when 'DomainBlock'
       'lock'
+    when 'DomainAllow'
+      'plus-circle'
     when 'EmailDomainBlock'
       'envelope'
     when 'Status'
@@ -86,7 +88,7 @@ module Admin::ActionLogsHelper
       record.shortcode
     when 'Report'
       link_to "##{record.id}", admin_report_path(record)
-    when 'DomainBlock', 'EmailDomainBlock'
+    when 'DomainBlock', 'EmailDomainBlock', 'DomainAllow'
       link_to record.domain, admin_instance_path(id: record.domain)
     when 'Status'
       link_to record.account.acct, ActivityPub::TagManager.instance.url_for(record)
@@ -99,7 +101,7 @@ module Admin::ActionLogsHelper
     case type
     when 'CustomEmoji'
       attributes['shortcode']
-    when 'DomainBlock', 'EmailDomainBlock'
+    when 'DomainBlock', 'EmailDomainBlock', 'DomainAllow'
       link_to attributes['domain'], admin_instance_path(id: attributes['domain'])
     when 'Status'
       tmp_status = Status.new(attributes.except('reblogs_count', 'favourites_count'))