Compare commits

..

No commits in common. "bbc315e2704f949812e0d1e56681abcfc91929fe" and "9d3edcf0ddde819890442c4c62c2b9098eef1f54" have entirely different histories.

View File

@ -17,16 +17,7 @@ router.get('/', async (req, res) => {
</ul>
<h2>models</h2>
<ul>${
(await Promise.all(
(
await mongoose.modelNames()).map(async (name) => {
const count = await mongoose.model(name).countDocuments()
return `<li>${name} - ${count}</li>`
}
)
)).map(t => t).join(' ')
}</ul>
<ul>${(await mongoose.modelNames()).map((name) => `<li>${name}</li>`)}</ul>
`)
})