fix: Empty trash doesn't work
@@ -594,7 +594,7 @@ module.exports = (crowi) => {
router.delete('/empty-trash', accessTokenParser, loginRequired, csrf, apiV3FormValidator, async(req, res) => {
const options = {};
- const pagesInTrash = await Page.findChildrenByParentPathOrIdAndViewer('/trash', req.user);
+ const pagesInTrash = await crowi.pageService.findChildrenByParentPathOrIdAndViewer('/trash', req.user);
const deletablePages = crowi.pageService.filterPagesByCanDeleteCompletely(pagesInTrash, req.user, true);