diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-10-22 11:44:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-22 11:44:41 +0200 |
commit | 7c152acb2cc545a87610de349a94e14f45fbed5d (patch) | |
tree | 1f698c5ffb954b000cb0779de5a2bf25884779c0 /app/controllers/admin/settings/about_controller.rb | |
parent | abf6c87ee8b57e09dca5f5b1fe1839a314e1aa46 (diff) |
Change settings area to be separated into categories in admin UI (#19407)
And update all descriptions
Diffstat (limited to 'app/controllers/admin/settings/about_controller.rb')
-rw-r--r-- | app/controllers/admin/settings/about_controller.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/controllers/admin/settings/about_controller.rb b/app/controllers/admin/settings/about_controller.rb new file mode 100644 index 000000000..86327fe39 --- /dev/null +++ b/app/controllers/admin/settings/about_controller.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true + +class Admin::Settings::AboutController < Admin::SettingsController + private + + def after_update_redirect_path + admin_settings_about_path + end +end |