guhongwei 4 년 전
부모
커밋
406e61b236
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/router.js

+ 1 - 1
app/router.js

@@ -6,6 +6,6 @@
 module.exports = app => {
   const { router, controller } = app;
   // 測試
-  router.resources("test", "/api/servicezhwl/test", controller.test); // index、create、show、destroy
+  router.resources('test', '/api/servicezhwl/test', controller.test); // index、create、show、destroy
   router.post('test', '/api/servicezhwl/test/update/:id', controller.test.update);
 };