Shun Miyazawa 3 лет назад
Родитель
Сommit
f64a7ffb4c
1 измененных файлов с 0 добавлено и 3 удалено
  1. 0 3
      packages/app/src/server/routes/apiv3/page.js

+ 0 - 3
packages/app/src/server/routes/apiv3/page.js

@@ -472,9 +472,6 @@ module.exports = (crowi) => {
   router.get('/exist-paths', loginRequired, validator.exist, apiV3FormValidator, async(req, res) => {
     const { fromPath, toPath } = req.query;
 
-    console.log('fromPath', fromPath);
-    console.log('toPath', toPath);
-
     try {
       const fromPage = await Page.findByPath(fromPath);
       if (fromPage == null) throw new Error('fromPage is Null');