Browse Source

add shash

Shun Miyazawa 1 year ago
parent
commit
42d437be3f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      apps/app/src/features/openai/server/routes/index.ts

+ 1 - 1
apps/app/src/features/openai/server/routes/index.ts

@@ -32,7 +32,7 @@ export const factory = (crowi: Crowi): express.Router => {
     });
 
     import('./ai-assistant').then(({ createAiAssistantFactory }) => {
-      router.post('ai-assistant', createAiAssistantFactory(crowi));
+      router.post('/ai-assistant', createAiAssistantFactory(crowi));
     });
   }