check #37

Merged
primakov merged 3 commits from feature/check-jenkins into master 2024-10-16 11:38:10 +03:00
Showing only changes of commit afc782f50f - Show all commits

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