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/controllers/settings | |
parent | 26b08a3c54847f2816f78c3ac67ace001d3fea1f (diff) |
Add ability to remove identity proofs from account (#13682)
Fix #12613
Diffstat (limited to 'app/controllers/settings')
-rw-r--r-- | app/controllers/settings/identity_proofs_controller.rb | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/app/controllers/settings/identity_proofs_controller.rb b/app/controllers/settings/identity_proofs_controller.rb index a749d8020..3a90b7c4d 100644 --- a/app/controllers/settings/identity_proofs_controller.rb +++ b/app/controllers/settings/identity_proofs_controller.rb @@ -21,8 +21,7 @@ class Settings::IdentityProofsController < Settings::BaseController if current_account.username.casecmp(params[:username]).zero? render layout: 'auth' else - flash[:alert] = I18n.t('identity_proofs.errors.wrong_user', proving: params[:username], current: current_account.username) - redirect_to settings_identity_proofs_path + redirect_to settings_identity_proofs_path, alert: I18n.t('identity_proofs.errors.wrong_user', proving: params[:username], current: current_account.username) end end @@ -34,11 +33,16 @@ class Settings::IdentityProofsController < Settings::BaseController PostStatusService.new.call(current_user.account, text: post_params[:status_text]) if publish_proof? redirect_to @proof.on_success_path(params[:user_agent]) else - flash[:alert] = I18n.t('identity_proofs.errors.failed', provider: @proof.provider.capitalize) - redirect_to settings_identity_proofs_path + redirect_to settings_identity_proofs_path, alert: I18n.t('identity_proofs.errors.failed', provider: @proof.provider.capitalize) end end + def destroy + @proof = current_account.identity_proofs.find(params[:id]) + @proof.destroy! + redirect_to settings_identity_proofs_path, success: I18n.t('identity_proofs.removed') + end + private def check_required_params |