From a1609affee7a262dc6a57920e42f831cb8b6306c Mon Sep 17 00:00:00 2001 From: rca Date: Tue, 9 Jul 2024 04:41:41 +0900 Subject: [PATCH] test --- src/routers/task/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routers/task/index.ts b/src/routers/task/index.ts index 339665f..7fac379 100644 --- a/src/routers/task/index.ts +++ b/src/routers/task/index.ts @@ -9,7 +9,7 @@ const router = Router(); router.use('/', verifyToken, rootCommonRouter); router.use('/' , verifyToken, verifyParent, rootParentRouter); router.use('/history', verifyToken, historyCommonRouter); -router.use('/history', verifyToken, verifyParent, historyParentRouter); +router.use('/history', verifyToken, historyParentRouter); export default router;