Adding the privacy page to the routes

This commit is contained in:
Pete Herlihy
2018-05-23 14:35:26 +01:00
committed by GitHub
parent 0c3694382e
commit 53a1b05aaf

View File

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