Merge remote-tracking branch 'upstream/main' into develop

This commit is contained in:
Jeremy Kescher 2022-10-07 16:40:46 +02:00
commit 936677e96d
No known key found for this signature in database
GPG key ID: 48DFE4BB15BA5940

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