From 443ac23c29762c4f87f608f1cff6152d12be0144 Mon Sep 17 00:00:00 2001 From: Pete Matsyburka Date: Sat, 28 Sep 2024 10:11:04 +0300 Subject: [PATCH] fix account form --- app/controllers/accounts_controller.rb | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/app/controllers/accounts_controller.rb b/app/controllers/accounts_controller.rb index 91cfca6c..454ac39b 100644 --- a/app/controllers/accounts_controller.rb +++ b/app/controllers/accounts_controller.rb @@ -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')