summaryrefslogtreecommitdiff
path: root/controllers/controllers.php
diff options
context:
space:
mode:
Diffstat (limited to 'controllers/controllers.php')
-rw-r--r--controllers/controllers.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/controllers/controllers.php b/controllers/controllers.php
index 0de366b..b6bb30a 100644
--- a/controllers/controllers.php
+++ b/controllers/controllers.php
@@ -119,6 +119,11 @@ $app->get('/docs', function() use($app) {
$app->response()->body($html);
});
+$app->get('/privacy', function() use($app) {
+ $html = render('privacy', array('title' => 'Quill Privacy Policy'));
+ $app->response()->body($html);
+});
+
$app->get('/add-to-home', function() use($app) {
$params = $app->request()->params();