fix(entry): add entry
This commit is contained in:
@@ -3,11 +3,11 @@ import { BASE_LABEL_API } from "../const"
|
||||
import { Organization, User } from "./typing"
|
||||
|
||||
// 获取用户列表
|
||||
export const getUserList = (params: User.ListRequest) => {
|
||||
export const getUserList = (data: User.ListRequest) => {
|
||||
return httpFetch<User.ListResponse>({
|
||||
url: BASE_LABEL_API + "/api/v1/label_server/user/list",
|
||||
method: "GET",
|
||||
data: params,
|
||||
method: "POST",
|
||||
body: JSON.stringify({ ...data, tenant: "cowarobot" }),
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user