diff options
Diffstat (limited to 'app/controllers/settings/base_controller.rb')
-rw-r--r-- | app/controllers/settings/base_controller.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/controllers/settings/base_controller.rb b/app/controllers/settings/base_controller.rb index 9bb14afa2..8c394a6d3 100644 --- a/app/controllers/settings/base_controller.rb +++ b/app/controllers/settings/base_controller.rb @@ -1,10 +1,15 @@ # frozen_string_literal: true class Settings::BaseController < ApplicationController + before_action :set_pack before_action :set_body_classes private + def set_pack + use_pack 'settings' + end + def set_body_classes @body_classes = 'admin' end |