mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 15:49:39 +02:00
* Build out user deactivation and purging workflows * Add i18n translations for user deletion * Add tests for user deletion * Fix lint issue
35 lines
965 B
Ruby
35 lines
965 B
Ruby
class Settings::ProfilesController < ApplicationController
|
|
def show
|
|
end
|
|
|
|
def update
|
|
user_params_with_family = user_params
|
|
|
|
if Current.family && user_params_with_family[:family_attributes]
|
|
family_attributes = user_params_with_family[:family_attributes].merge({ id: Current.family.id })
|
|
user_params_with_family[:family_attributes] = family_attributes
|
|
end
|
|
|
|
if Current.user.update(user_params_with_family)
|
|
redirect_to settings_profile_path, notice: t(".success")
|
|
else
|
|
render :edit, status: :unprocessable_entity
|
|
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
|
|
params.require(:user).permit(:first_name, :last_name,
|
|
family_attributes: [ :name, :id ])
|
|
end
|
|
end
|