Browse Source

Display deleted users' role as “Suspended” (#6080)

Deleted users are technically suspended, but the code displaying their status
in the admin interface was broken and displayed a javascript object holding
translations of the possible user roles instead.
pull/4/head
ThibG 6 years ago
committed by Eugen Rochko
parent
commit
6eb60260b1
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      app/views/admin/accounts/_account.html.haml

+ 4
- 1
app/views/admin/accounts/_account.html.haml View File

@ -6,7 +6,10 @@
= link_to account.domain, admin_accounts_path(by_domain: account.domain)
%td
- if account.local?
= t("admin.accounts.roles.#{account.user&.role}")
- if account.user.nil?
= t("admin.accounts.moderation.suspended")
- else
= t("admin.accounts.roles.#{account.user.role}")
- else
= account.protocol.humanize
%td

Loading…
Cancel
Save