fix account form

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

@ -19,19 +19,21 @@ class AccountsController < ApplicationController
def update
current_account.update!(account_params)
@encrypted_config = EncryptedConfig.find_or_initialize_by(account: current_account,
key: EncryptedConfig::APP_URL_KEY)
@encrypted_config.assign_attributes(app_url_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)
unless URI.parse(@encrypted_config.value.to_s).class.in?([URI::HTTP, URI::HTTPS])
@encrypted_config.errors.add(:value, I18n.t('should_be_a_valid_url'))
unless URI.parse(@encrypted_config.value.to_s).class.in?([URI::HTTP, URI::HTTPS])
@encrypted_config.errors.add(:value, I18n.t('should_be_a_valid_url'))
return render :show, status: :unprocessable_entity
end
return render :show, status: :unprocessable_entity
end
@encrypted_config.save!
@encrypted_config.save!
Docuseal.refresh_default_url_options!
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