diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-11-12 13:24:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-12 13:24:53 +0100 |
commit | d37f426f95f812b44925e13c00eabb9d1cd76b1f (patch) | |
tree | 31bfcac2f24090d21fae8d85de8c908b44807e71 /app/controllers/admin | |
parent | e88f4f5e57e1a941c9e11f3cc34e291bf73394c5 (diff) |
Add back missing glitch-soc admin settings (#1919)
Fixes #1890
Diffstat (limited to 'app/controllers/admin')
-rw-r--r-- | app/controllers/admin/settings/other_controller.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/controllers/admin/settings/other_controller.rb b/app/controllers/admin/settings/other_controller.rb new file mode 100644 index 000000000..c7bfa3d58 --- /dev/null +++ b/app/controllers/admin/settings/other_controller.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true + +class Admin::Settings::OtherController < Admin::SettingsController + private + + def after_update_redirect_path + admin_settings_other_path + end +end |