Add ability to delete Maybe account (#698)

* Build out user deactivation and purging workflows

* Add i18n translations for user deletion

* Add tests for user deletion

* Fix lint issue
This commit is contained in:
Josh Brown
2024-04-30 16:40:31 +01:00
committed by GitHub
parent 55cb1ae5bd
commit 19ee773d9b
15 changed files with 128 additions and 8 deletions

View File

@@ -17,6 +17,15 @@ class Settings::ProfilesController < ApplicationController
end
end
def destroy
if Current.user.deactivate
logout
redirect_to root_path, notice: t(".success")
else
redirect_to settings_profile_path, alert: Current.user.errors.full_messages.to_sentence
end
end
private
def user_params