From 92f6cb189fe95ac6fba125a6b0a1e7ebfae63c87 Mon Sep 17 00:00:00 2001 From: Emi Matchu Date: Sat, 30 Mar 2024 23:36:03 -0700 Subject: [PATCH] Add /privacy route I don't link to this in the footer or anything yet, but TNT asked for it as part of the NeoPass setup, so I currently just redirect to the outdated Impress 2020 privacy policy. (It's outdated in the sense that we share *less* data with our third party services now, e.g. we moved our analytics and error tracking onto our own machines!) --- config/routes.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/routes.rb b/config/routes.rb index d4909ddb..27e874cb 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -88,6 +88,8 @@ OpenneoImpressItems::Application.routes.draw do # About pages! get '/terms', to: "about#terms", as: :terms + get '/privacy', + to: redirect(Rails.configuration.impress_2020_origin + "/privacy") get '/about/neopass', to: 'about#neopass' # Other useful lil things!