aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/controllers
diff options
context:
space:
mode:
Diffstat (limited to 'controllers')
-rw-r--r--controllers/system.js11
1 files changed, 10 insertions, 1 deletions
diff --git a/controllers/system.js b/controllers/system.js
index f04ec6d..e3a55bd 100644
--- a/controllers/system.js
+++ b/controllers/system.js
@@ -2,7 +2,8 @@
/**
* Module dependencies
*/
-
+var mongoose = require('mongoose')
+ , Project = mongoose.model('Project');
@@ -69,3 +70,11 @@ exports.newProject = function(req, res) {
res.render('newproject', { title: 'Nytt prosjekt', loggedin: true });
}
+exports.postNewProject = function(req, res) {
+ var project = new Project(req.body);
+ project.save(function(err) {
+ if (err) return res.render('newproject', { title: 'Nytt prosjekt - en feil oppstod', loggedin: true, errors: err.errors, project: project });
+ return res.redirect('/dashboard');
+ });
+}
+