mirror of https://github.com/buster-so/buster.git
fix listing endpoints
This commit is contained in:
parent
f18c509358
commit
f12f443fda
|
@ -26,11 +26,11 @@ export const getMetricData = async ({ id }: { id: string }) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
export const listMetrics = async (params: ListMetricsParams) => {
|
export const listMetrics = async (params: ListMetricsParams) => {
|
||||||
return mainApi.get<BusterMetricListItem[]>('/metrics/list', { params }).then((res) => res.data);
|
return mainApi.get<BusterMetricListItem[]>('/metrics', { params }).then((res) => res.data);
|
||||||
};
|
};
|
||||||
|
|
||||||
export const listMetrics_server = async (params: ListMetricsParams) => {
|
export const listMetrics_server = async (params: ListMetricsParams) => {
|
||||||
return await serverFetch<BusterMetricListItem[]>('/metrics/list', { params });
|
return await serverFetch<BusterMetricListItem[]>('/metrics', { params });
|
||||||
};
|
};
|
||||||
|
|
||||||
export const updateMetric = async (params: UpdateMetricParams) => {
|
export const updateMetric = async (params: UpdateMetricParams) => {
|
||||||
|
|
|
@ -7,5 +7,5 @@ export const createTeam = async (params: CreateTeamParams) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getTeamsList = async (params: TeamListParams) => {
|
export const getTeamsList = async (params: TeamListParams) => {
|
||||||
return mainApi.get<BusterUserTeam[]>('/teams/list', { params }).then((res) => res.data);
|
return mainApi.get<BusterUserTeam[]>('/teams', { params }).then((res) => res.data);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue