mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-01 00:05:43 +08:00
### What problem does this PR solve? Fix: Added some prompts and polling functionality to retrieve data source logs. ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
37 lines
1.0 KiB
TypeScript
37 lines
1.0 KiB
TypeScript
import api from '@/utils/api';
|
|
import registerServer from '@/utils/register-server';
|
|
import request from '@/utils/request';
|
|
|
|
const { dataSourceSet, dataSourceList } = api;
|
|
const methods = {
|
|
dataSourceSet: {
|
|
url: dataSourceSet,
|
|
method: 'post',
|
|
},
|
|
dataSourceList: {
|
|
url: dataSourceList,
|
|
method: 'get',
|
|
},
|
|
} as const;
|
|
const dataSourceService = registerServer<keyof typeof methods>(
|
|
methods,
|
|
request,
|
|
);
|
|
|
|
export const deleteDataSource = (id: string) =>
|
|
request.post(api.dataSourceDel(id));
|
|
export const dataSourceResume = (id: string, data: { resume: boolean }) => {
|
|
return request.put(api.dataSourceResume(id), { data });
|
|
};
|
|
|
|
export const dataSourceRebuild = (id: string, data: { kb_id: string }) => {
|
|
return request.put(api.dataSourceRebuild(id), { data });
|
|
};
|
|
|
|
export const getDataSourceLogs = (id: string, params?: any) =>
|
|
request.get(api.dataSourceLogs(id), { params });
|
|
export const featchDataSourceDetail = (id: string) =>
|
|
request.get(api.dataSourceDetail(id));
|
|
|
|
export default dataSourceService;
|