diff options
| author | nanalelfe <nargiza.nosirova@mail.utoronto.ca> | 2016-07-27 23:07:38 +0000 |
|---|---|---|
| committer | nanalelfe <nargiza.nosirova@mail.utoronto.ca> | 2016-07-27 23:07:38 +0000 |
| commit | 9b615503ced29ee4a421308d3041ad7bf70e2881 (patch) | |
| tree | cd53979d86ea0786ab5bd05ba3800bd1b68e11e2 /routes/index.js | |
| parent | 76d2ef0c64911b449d206df7f206a0d0548266e0 (diff) | |
| parent | ceba1e6492485dba09ef2989a61c090480543072 (diff) | |
Merge branch 'master' of https://github.com/HumairAK/solutions_repo
Diffstat (limited to 'routes/index.js')
| -rw-r--r-- | routes/index.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/routes/index.js b/routes/index.js index 4117e41..b2a90dc 100644 --- a/routes/index.js +++ b/routes/index.js @@ -23,6 +23,16 @@ router.get('/about', function(req, res, next) { res.render('about'); }); +/** Serve the terms_and_conditions.hbs page */ +router.get('/terms_and_conditions', function(req, res, next) { + res.render('terms_and_conditions'); +}); + +/** Serve the privacy_poicy.hbs page */ +router.get('/privacy_policy', function(req, res, next) { + res.render('privacy_policy'); +}); + /** Serve the profile page of a user with given username */ router.get('/public_profile/:username', function(req,res,next){ |
