0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 18:32:41 +00:00

Update admin.api.js

This commit is contained in:
Trevor Buckner
2020-10-19 16:24:19 -04:00
parent 3a250d3da4
commit 1d50cbf684

View File

@@ -37,7 +37,7 @@ const junkBrewQuery = HomebrewModel.find({
/* Search for brews that aren't compressed (missing the compressed text field) */
const uncompressedBrewQuery = HomebrewModel.find({
'textBin' : null
'text' : { '$exists' : true }
}).lean().limit(1000).select('_id');
router.get('/admin/cleanup', mw.adminOnly, (req, res)=>{