You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 3 месеца
преди 3 месеца
преди 3 месеца
преди 3 месеца
12345678910
  1. import { FlowType } from '@/types/common'
  2. export const flowPrefixMap = {
  3. [FlowType.appFlow]: 'apps',
  4. [FlowType.ragPipeline]: 'rag/pipelines',
  5. }
  6. export const getFlowPrefix = (type?: FlowType) => {
  7. return flowPrefixMap[type!] || flowPrefixMap[FlowType.appFlow]
  8. }