diff options
Diffstat (limited to 'controllers/system.js')
-rw-r--r-- | controllers/system.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/controllers/system.js b/controllers/system.js index e798f17..cf205b9 100644 --- a/controllers/system.js +++ b/controllers/system.js @@ -65,3 +65,7 @@ exports.project = function(req, res) { res.render('project', { title: 'Harepus', loggedin: true }); } +exports.newproject = function(req, res) { + res.render('newproject', { title: 'Nytt prosjekt', loggedin: true }); +} + |