Fix links relating to instances and email domain blocks

This commit is contained in:
Emelia Smith 2023-09-26 19:14:25 +02:00
parent c13399ad5a
commit 6b29ac1733
No known key found for this signature in database
1 changed files with 3 additions and 5 deletions

View File

@ -15,17 +15,15 @@ module Admin::ActionLogsHelper
link_to log.human_identifier, admin_roles_path(log.target_id)
when 'Report'
link_to "##{log.human_identifier.presence || log.target_id}", admin_report_path(log.target_id)
when 'DomainBlock', 'DomainAllow', 'UnavailableDomain'
link_to log.human_identifier, admin_instance_path(log.target.domain)
when 'EmailDomainBlock'
link_to log.human_identifier, admin_email_domain_blocks_path
when 'Instance', 'DomainBlock', 'DomainAllow', 'UnavailableDomain'
link_to log.human_identifier, admin_instance_path(log.human_identifier)
when 'Status'
link_to log.human_identifier, log.permalink
when 'AccountWarning'
link_to log.human_identifier, disputes_strike_path(log.target_id)
when 'Announcement'
link_to truncate(log.human_identifier), edit_admin_announcement_path(log.target_id)
when 'IpBlock', 'Instance', 'CustomEmoji'
when 'IpBlock', 'EmailDomainBlock', 'CustomEmoji'
log.human_identifier
when 'CanonicalEmailBlock'
content_tag(:samp, (log.human_identifier.presence || '')[0...7], title: log.human_identifier)