routes resume for todo.
This commit is contained in:
parent
dfe2628a42
commit
511c8cd0fb
1 changed files with 3 additions and 3 deletions
|
@ -4,11 +4,11 @@ module.exports = function(app) {
|
||||||
|
|
||||||
app.route('/api/test')
|
app.route('/api/test')
|
||||||
.get((req,res)=>{ res.send('testing here'); });
|
.get((req,res)=>{ res.send('testing here'); });
|
||||||
|
/*
|
||||||
app.get('/tasks',(req, res) => {
|
app.get('/tasks',(req, res) => {
|
||||||
res.send('Tasks is here')
|
res.send('Tasks is here')
|
||||||
});
|
});
|
||||||
/*
|
*/
|
||||||
// todoList Routes
|
// todoList Routes
|
||||||
app.route('/tasks')
|
app.route('/tasks')
|
||||||
.get(todoList.list_all_tasks)
|
.get(todoList.list_all_tasks)
|
||||||
|
@ -19,5 +19,5 @@ module.exports = function(app) {
|
||||||
.get(todoList.read_a_task)
|
.get(todoList.read_a_task)
|
||||||
.put(todoList.update_a_task)
|
.put(todoList.update_a_task)
|
||||||
.delete(todoList.delete_a_task);
|
.delete(todoList.delete_a_task);
|
||||||
*/
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue