diff --git a/src/modules/topics/router.ts b/src/modules/topics/router.ts index c968d05..5ac6102 100644 --- a/src/modules/topics/router.ts +++ b/src/modules/topics/router.ts @@ -20,7 +20,7 @@ export const router = new Elysia({ }, { query: listTopics, response: listTopicResponseSchema, - verifyBasicAuth: true, + verifyBasicAuth: false, }) .get('/commands', async ({ query, set }) => { const result = await QueryService.getCommands(query) @@ -32,7 +32,7 @@ export const router = new Elysia({ }, { query: listTopics, response: listTopicResponseSchema, - verifyBasicAuth: true, + verifyBasicAuth: false, }) .post('/', async ({ body, set }) => { const result = await CommandService.postTopic(body) @@ -44,7 +44,7 @@ export const router = new Elysia({ }, { body: postDeleteTopic, response: postDeleteTopicResponseSchema, - verifyBasicAuth: true, + verifyBasicAuth: false, }) .patch('/', () => { return 'Topics' @@ -59,7 +59,7 @@ export const router = new Elysia({ }, { body: postDeleteTopic, response: postDeleteTopicResponseSchema, - verifyBasicAuth: true, + verifyBasicAuth: false, }) export default router