Add name field to "New URL" form

This commit is contained in:
Rowan Manning
2013-11-11 11:41:58 +00:00
parent 6d7ca9a58a
commit 8bd18c9078
2 changed files with 11 additions and 1 deletions

View File

@@ -22,6 +22,7 @@ function route (app) {
app.express.post('/new', function (req, res) {
var newTask = {
name: req.body.name,
url: req.body.url,
standard: req.body.standard,
ignore: req.body.ignore || []