diff options
-rw-r--r-- | controllers/system.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/controllers/system.js b/controllers/system.js index ad5ced0..5400173 100644 --- a/controllers/system.js +++ b/controllers/system.js @@ -101,6 +101,17 @@ exports.project = function(req, res) { res.render('project', { title: 'Harepus', loggedin: true }); } +exports.projectParticipants = function(req, res) { + + res.render('projectParticipants', { title: 'Prosjektdeltakere', loggedin: true }); + +} + +exports.postProjectParticipants = function(req, res) { + +} + + exports.newProject = function(req, res) { res.render('newproject', { title: 'Nytt prosjekt', loggedin: true }); } |