mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Feat: Add Sessions component #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -6,6 +6,7 @@ export enum Routes {
|
||||
Dataset = `${Routes.DatasetBase}${Routes.DatasetBase}`,
|
||||
Agent = '/agent',
|
||||
Search = '/next-search',
|
||||
Chats = '/next-chats',
|
||||
Chat = '/next-chat',
|
||||
Files = '/files',
|
||||
ProfileSetting = '/profile-setting',
|
||||
@ -162,16 +163,21 @@ const routes = [
|
||||
],
|
||||
},
|
||||
{
|
||||
path: Routes.Chat,
|
||||
path: Routes.Chats,
|
||||
layout: false,
|
||||
component: '@/layouts/next',
|
||||
routes: [
|
||||
{
|
||||
path: Routes.Chat,
|
||||
component: `@/pages${Routes.Chat}`,
|
||||
path: Routes.Chats,
|
||||
component: `@/pages${Routes.Chats}`,
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
path: Routes.Chat,
|
||||
layout: false,
|
||||
component: `@/pages${Routes.Chats}/chat`,
|
||||
},
|
||||
{
|
||||
path: Routes.Search,
|
||||
layout: false,
|
||||
|
||||
Reference in New Issue
Block a user