mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-12 18:11:42 +08:00
cefec44070
Signed-off-by: -LAN- <laipz8200@outlook.com> Co-authored-by: twwu <twwu@dify.ai>
18 lines
479 B
TypeScript
18 lines
479 B
TypeScript
import type { AppMode } from '@/types/app'
|
|
|
|
export const getRedirection = (
|
|
isCurrentWorkspaceEditor: boolean,
|
|
app: { id: string, mode: AppMode },
|
|
redirectionFunc: (href: string) => void,
|
|
) => {
|
|
if (!isCurrentWorkspaceEditor) {
|
|
redirectionFunc(`/app/${app.id}/overview`)
|
|
}
|
|
else {
|
|
if (app.mode === 'workflow' || app.mode === 'advanced-chat')
|
|
redirectionFunc(`/app/${app.id}/workflow`)
|
|
else
|
|
redirectionFunc(`/app/${app.id}/configuration`)
|
|
}
|
|
}
|