diff options
Diffstat (limited to 'controllers/controllers.php')
| -rw-r--r-- | controllers/controllers.php | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/controllers/controllers.php b/controllers/controllers.php index b983675..0fef6df 100644 --- a/controllers/controllers.php +++ b/controllers/controllers.php @@ -146,6 +146,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();  | 
