diff options
author | Claire <claire.github-309c@sitedethib.com> | 2021-12-17 23:02:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-17 23:02:14 +0100 |
commit | 76761d5fc0886e44a7a6eb94ab62aae8204d9e6e (patch) | |
tree | 95cd6ad55eb9c249e212af2378c23160785ec34c /app/views/admin/accounts | |
parent | 7f803c41e2ca54b7b787b1f111f91357136c0e68 (diff) |
Add ability for admins to delete canonical email blocks (#16644)
* Add admin option to remove canonical email blocks from a deleted account * Add tootctl canonical_email_blocks to inspect and remove canonical email blocks
Diffstat (limited to 'app/views/admin/accounts')
-rw-r--r-- | app/views/admin/accounts/show.html.haml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/views/admin/accounts/show.html.haml b/app/views/admin/accounts/show.html.haml index 2b6e28e8d..64cfc9a77 100644 --- a/app/views/admin/accounts/show.html.haml +++ b/app/views/admin/accounts/show.html.haml @@ -71,7 +71,9 @@ = t('admin.accounts.no_limits_imposed') .dashboard__counters__label= t 'admin.accounts.login_status' -- unless @account.local? && @account.user.nil? +- if @account.local? && @account.user.nil? + = link_to t('admin.accounts.unblock_email'), unblock_email_admin_account_path(@account.id), method: :post, class: 'button' if can?(:unblock_email, @account) && CanonicalEmailBlock.where(reference_account_id: @account.id).exists? +- else .table-wrapper %table.table.inline-table %tbody |