This commit is contained in:
Primakov Alexandr Alexandrovich 2024-10-16 11:08:03 +03:00
parent ff6e688206
commit afc782f50f

View File

@ -6,7 +6,7 @@ const { getAnswer } = require('../../utils/common')
const router = Router()
// http://localhost:8033/todo/list
// test - http://localhost:8033/todo/list
router.get('/list', async (req, res) => {
const items = await ListModel
.find({})
@ -16,7 +16,7 @@ router.get('/list', async (req, res) => {
res.send(getAnswer(null, items))
})
// http://localhost:8033/todo/list/create/new%20List%20Name
// test - http://localhost:8033/todo/list/create/new%20List%20Name
router.get('/list/create/:title', async (req, res) => {
const { title } = req.params
@ -25,7 +25,7 @@ router.get('/list/create/:title', async (req, res) => {
res.send(getAnswer(null, list))
})
// http://localhost:8033/todo/item/create/:listId/new%20one
// test - http://localhost:8033/todo/item/create/:listId/new%20one
router.get('/item/create/:listId/:name', async (req, res, next) => {
const { name, listId } = req.params