mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
- Revamp the super admin design - Introduce a new settings page for support and billing settings - Move the access tokens into users, agent bots and platform app show pages Co-authored-by: Sojan <sojan@pepalo.com> Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
11 lines
326 B
Ruby
11 lines
326 B
Ruby
class SuperAdmin::SettingsController < SuperAdmin::ApplicationController
|
|
def show; end
|
|
|
|
def refresh
|
|
Internal::CheckNewVersionsJob.perform_now
|
|
# rubocop:disable Rails/I18nLocaleTexts
|
|
redirect_to super_admin_settings_path, notice: 'Instance status refreshed'
|
|
# rubocop:enable Rails/I18nLocaleTexts
|
|
end
|
|
end
|