30802e0c13
* Dashboard locale can be set via env variable * Change account locale based on registration page * Set account locale if available Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
25 lines
494 B
Ruby
25 lines
494 B
Ruby
class DashboardController < ActionController::Base
|
|
before_action :set_global_config
|
|
include SwitchLocale
|
|
|
|
layout 'vueapp'
|
|
|
|
def index; end
|
|
|
|
private
|
|
|
|
def set_global_config
|
|
@global_config = GlobalConfig.get(
|
|
'LOGO',
|
|
'LOGO_THUMBNAIL',
|
|
'INSTALLATION_NAME',
|
|
'WIDGET_BRAND_URL',
|
|
'TERMS_URL',
|
|
'PRIVACY_URL',
|
|
'DISPLAY_MANIFEST',
|
|
'CREATE_NEW_ACCOUNT_FROM_DASHBOARD'
|
|
).merge(
|
|
APP_VERSION: Chatwoot.config[:version]
|
|
)
|
|
end
|
|
end
|