diff options
author | Aaron Parecki <aaron@parecki.com> | 2015-01-16 22:54:08 -0800 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2015-01-16 22:54:08 -0800 |
commit | 9fe3a8ff07733145847c84b27c983fb7986d6e70 (patch) | |
tree | b9425133909f9ddcd9b38dfab0b334540ff594e9 /controllers/controllers.php | |
parent | 21978c981ec2fc5c84041113510ebdd3e9a2d2fb (diff) | |
parent | 7071565345cf00ffcc942947e941f59b5093476b (diff) |
Merge branch 'master' of github.com:aaronpk/IndiePost
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(); |