kaori 4 лет назад
Родитель
Сommit
b364bc33c6
2 измененных файлов с 0 добавлено и 14 удалено
  1. 0 1
      src/server/routes/apiv3/index.js
  2. 0 13
      src/server/routes/apiv3/password.js

+ 0 - 1
src/server/routes/apiv3/index.js

@@ -49,7 +49,6 @@ module.exports = (crowi) => {
   router.use('/slack-integration', require('./slack-integration')(crowi));
   router.use('/slack-integration-settings', require('./slack-integration-settings')(crowi));
   router.use('/staffs', require('./staffs')(crowi));
-  router.use('/password', require('./password')(crowi));
 
   return router;
 };

+ 0 - 13
src/server/routes/apiv3/password.js

@@ -1,13 +0,0 @@
-const express = require('express');
-
-const router = express.Router();
-
-
-module.exports = (crowi) => {
-
-  router.get('/', async(req, res) => {
-    return res.apiv3({ hoge: 'hoge' });
-  });
-
-  return router;
-};