diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-02-14 21:54:01 +0100 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2022-02-17 10:59:01 +0100 |
commit | 41d52ee4b5d72b3f63bf05b61bfb08b4ea270042 (patch) | |
tree | 62cc68ba4507366e2167c391297042f5886737ca /app/controllers | |
parent | 5ed35a0df4087c788c709dbb0bfb3a2cc020f78e (diff) |
Fix issue with glitch-soc's theming system
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/disputes/base_controller.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/controllers/disputes/base_controller.rb b/app/controllers/disputes/base_controller.rb index 865146b5c..7830c5524 100644 --- a/app/controllers/disputes/base_controller.rb +++ b/app/controllers/disputes/base_controller.rb @@ -9,9 +9,14 @@ class Disputes::BaseController < ApplicationController before_action :set_body_classes before_action :authenticate_user! + before_action :set_pack private + def set_pack + use_pack 'admin' + end + def set_body_classes @body_classes = 'admin' end |