mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.3 KiB
48 lines
1.3 KiB
# frozen_string_literal: true
|
|
|
|
class AccountsController < ApplicationController
|
|
LOCALE_OPTIONS = {
|
|
'en-US' => 'English (United States)',
|
|
'en-GB' => 'English (United Kingdom)',
|
|
'es-ES' => 'Spanish (Spain)',
|
|
'pt-PT' => 'Portuguese (Portugal)',
|
|
'de-DE' => 'German (Germany)'
|
|
}.freeze
|
|
|
|
def show; end
|
|
|
|
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 URI.parse(@encrypted_config.value.to_s).class.in?([URI::HTTP, URI::HTTPS])
|
|
@encrypted_config.errors.add(:value, 'should be a valid URL')
|
|
|
|
return render :show, status: :unprocessable_entity
|
|
end
|
|
|
|
@encrypted_config.save!
|
|
|
|
Docuseal.refresh_default_url_options!
|
|
|
|
redirect_to settings_account_path, notice: 'Account information has been updated'
|
|
rescue ActiveRecord::RecordInvalid
|
|
render :show, status: :unprocessable_entity
|
|
end
|
|
|
|
private
|
|
|
|
def account_params
|
|
params.require(:account).permit(:name, :timezone, :locale)
|
|
end
|
|
|
|
def app_url_params
|
|
return {} if params[:encrypted_config].blank?
|
|
|
|
params.require(:encrypted_config).permit(:value)
|
|
end
|
|
end
|