From 2c8d1880cc3e1ed50a541a1d048280537698a29a Mon Sep 17 00:00:00 2001 From: Claire Date: Fri, 7 Oct 2022 11:35:31 +0200 Subject: [PATCH] Fix /privacy-policy not using the appropriate resource packs (#1853) Fixes #1852 This was an oversight from last upstream merge, failing to account for glitch-soc's theming system. --- app/controllers/privacy_controller.rb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/controllers/privacy_controller.rb b/app/controllers/privacy_controller.rb index ced84dbe5..126bb0128 100644 --- a/app/controllers/privacy_controller.rb +++ b/app/controllers/privacy_controller.rb @@ -3,6 +3,8 @@ class PrivacyController < ApplicationController layout 'public' + before_action :set_pack + before_action :set_instance_presenter before_action :set_expires_in @@ -12,6 +14,10 @@ class PrivacyController < ApplicationController private + def set_pack + use_pack 'public' + end + def set_instance_presenter @instance_presenter = InstancePresenter.new end