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.
master
Claire 2022-10-07 11:35:31 +02:00 committed by GitHub
parent c19a3517a0
commit 2c8d1880cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -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