mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-25 09:53:29 +08:00
Feat: Render the skills list using a tree view. (#17115)
### Summary Feat: Render the skills list using a tree view.
This commit is contained in:
@@ -174,6 +174,13 @@ export default {
|
||||
.split('/')
|
||||
.map((s) => encodeURIComponent(s))
|
||||
.join('/')}`,
|
||||
deleteDatasetSkillTree: (datasetId: string) =>
|
||||
`${restAPIv1}/datasets/${datasetId}/skills`,
|
||||
deleteDatasetSkillPage: (datasetId: string, skillKwd: string) =>
|
||||
`${restAPIv1}/datasets/${datasetId}/skills/${skillKwd
|
||||
.split('/')
|
||||
.map((s) => encodeURIComponent(s))
|
||||
.join('/')}`,
|
||||
// data pipeline log
|
||||
fetchDataPipelineLog: (datasetId: string) =>
|
||||
`${restAPIv1}/datasets/${datasetId}/ingestions`,
|
||||
|
||||
Reference in New Issue
Block a user