mirror of
https://github.com/langgenius/dify.git
synced 2024-11-15 19:22:36 +08:00
f257f2c396
Co-authored-by: crazywoola <427733928@qq.com> Co-authored-by: JzoNg <jzongcode@gmail.com>
48 lines
995 B
TypeScript
48 lines
995 B
TypeScript
import { del, get, patch, post } from './base'
|
|
import type { Tag } from '@/app/components/base/tag-management/constant'
|
|
|
|
export const fetchTagList = (type: string) => {
|
|
return get<Tag[]>('/tags', { params: { type } })
|
|
}
|
|
|
|
export const createTag = (name: string, type: string) => {
|
|
return post<Tag>('/tags', {
|
|
body: {
|
|
name,
|
|
type,
|
|
},
|
|
})
|
|
}
|
|
|
|
export const updateTag = (tagID: string, name: string) => {
|
|
return patch(`/tags/${tagID}`, {
|
|
body: {
|
|
name,
|
|
},
|
|
})
|
|
}
|
|
|
|
export const deleteTag = (tagID: string) => {
|
|
return del(`/tags/${tagID}`)
|
|
}
|
|
|
|
export const bindTag = (tagIDList: string[], targetID: string, type: string) => {
|
|
return post('/tag-bindings/create', {
|
|
body: {
|
|
tag_ids: tagIDList,
|
|
target_id: targetID,
|
|
type,
|
|
},
|
|
})
|
|
}
|
|
|
|
export const unBindTag = (tagID: string, targetID: string, type: string) => {
|
|
return post('/tag-bindings/remove', {
|
|
body: {
|
|
tag_id: tagID,
|
|
target_id: targetID,
|
|
type,
|
|
},
|
|
})
|
|
}
|