diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2020-05-10 11:21:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-10 11:21:10 +0200 |
commit | 8be4c2ba21c6a8e4abb0522dac398645c71d8e94 (patch) | |
tree | 23556290053e2c022c91a5f82b5212e3ae28583a /app/views | |
parent | 26b08a3c54847f2816f78c3ac67ace001d3fea1f (diff) |
Add ability to remove identity proofs from account (#13682)
Fix #12613
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/settings/identity_proofs/_proof.html.haml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/views/settings/identity_proofs/_proof.html.haml b/app/views/settings/identity_proofs/_proof.html.haml index 524827ad7..14e8e91be 100644 --- a/app/views/settings/identity_proofs/_proof.html.haml +++ b/app/views/settings/identity_proofs/_proof.html.haml @@ -18,3 +18,4 @@ %td = table_link_to 'external-link', t('identity_proofs.view_proof'), proof.badge.proof_url if proof.badge.proof_url + = table_link_to 'trash', t('identity_proofs.remove'), settings_identity_proof_path(proof), method: :delete, data: { confirm: t('admin.accounts.are_you_sure') } |