fix account form

pull/381/head
Pete Matsyburka 1 year ago committed by Oleksandr Turchyn
parent 37bb987e3e
commit 443ac23c29

@ -19,6 +19,7 @@ class AccountsController < ApplicationController
def update
current_account.update!(account_params)
unless Docuseal.multitenant?
@encrypted_config = EncryptedConfig.find_or_initialize_by(account: current_account,
key: EncryptedConfig::APP_URL_KEY)
@encrypted_config.assign_attributes(app_url_params)
@ -32,6 +33,7 @@ class AccountsController < ApplicationController
@encrypted_config.save!
Docuseal.refresh_default_url_options!
end
with_locale do
redirect_to settings_account_path, notice: I18n.t('account_information_has_been_updated')

Loading…
Cancel
Save