From 2c74027e0d501f5e8183b0ed23c104e428d8b37f Mon Sep 17 00:00:00 2001 From: Pete Herlihy Date: Fri, 3 Nov 2017 11:56:15 +0000 Subject: [PATCH] Adding a route for 'callbacks' page Gone with callbacks as this page may be extended for delivery receipts in the future. --- 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 412a8dbe4..24061b3cc 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -135,3 +135,8 @@ def using_notify(): @main.route('/information-risk-management') def information_risk_management(): return render_template('views/information-risk-management.html') + + +@main.route('/callbacks') +def callbacks(): + return render_template('views/callbacks.html')