Files
pa11y-dashboard/route/new.js
Rowan Manning 433aecd972 Initial commit
2013-09-13 16:49:19 +01:00

11 lines
166 B
JavaScript

'use strict';
module.exports = route;
// Route definition
function route (app) {
app.express.get('/new', function (req, res) {
res.send('Create a task');
});
}