Compare commits
2 Commits
fb644b6f7b
...
38bc0c55c8
Author | SHA1 | Date | |
---|---|---|---|
|
38bc0c55c8 | ||
|
9fb4219418 |
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "multi-stub",
|
"name": "multi-stub",
|
||||||
"version": "1.0.1",
|
"version": "1.1.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "multi-stub",
|
"name": "multi-stub",
|
||||||
"version": "1.0.1",
|
"version": "1.1.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "^1.7.9",
|
"axios": "^1.7.9",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "multi-stub",
|
"name": "multi-stub",
|
||||||
"version": "1.0.1",
|
"version": "1.1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -21,4 +21,14 @@ router.post('/', requiredValidate('title'), async (req, res) => {
|
|||||||
res.send(getAnswer(null, list))
|
res.send(getAnswer(null, list))
|
||||||
})
|
})
|
||||||
|
|
||||||
|
router.get('/list', async (req, res) => {
|
||||||
|
const items = await ListModel
|
||||||
|
.find({})
|
||||||
|
.populate('items')
|
||||||
|
.exec()
|
||||||
|
|
||||||
|
res.send(getAnswer(null, items))
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
module.exports = router
|
module.exports = router
|
||||||
|
Loading…
x
Reference in New Issue
Block a user