From 53a1b05aaf76c9a225c76d468af40f3078fc55fb Mon Sep 17 00:00:00 2001 From: Pete Herlihy Date: Wed, 23 May 2018 14:35:26 +0100 Subject: [PATCH] Adding the privacy page to the routes --- app/main/views/index.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/main/views/index.py b/app/main/views/index.py index 6e7bc1c6f..77ba91b94 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -37,6 +37,11 @@ def cookies(): return render_template('views/cookies.html') +@main.route('/privacy') +def privacy(): + return render_template('views/privacy.html') + + @main.route('/trial-mode') def trial_mode(): return redirect(url_for('.using_notify') + '#trial-mode', 301)