update:添加分页、成员添加优化
This commit is contained in:
@@ -270,7 +270,7 @@ export function useApi(): WorkspaceBoundApi {
|
||||
hideScheduleArtifact: (versionsId) =>
|
||||
rawApi.hideScheduleArtifact(workspaceId, versionsId),
|
||||
listEmployees: () => rawApi.listEmployees(workspaceId),
|
||||
listPlatformEmployees: () => rawApi.listPlatformEmployees(),
|
||||
listPlatformEmployees: (input) => rawApi.listPlatformEmployees(input),
|
||||
createEmployee: (input) => rawApi.createEmployee(workspaceId, input),
|
||||
createPlatformEmployee: (input) => rawApi.createPlatformEmployee(input),
|
||||
updateEmployee: (userId, input) =>
|
||||
@@ -312,7 +312,7 @@ export function useApi(): WorkspaceBoundApi {
|
||||
getScheduleNodeRunArtifacts: (runId, nodeRunId) =>
|
||||
rawApi.getScheduleNodeRunArtifacts(workspaceId, runId, nodeRunId),
|
||||
// Workspace (Project) Management - 系统管理接口(跨 workspace,不需要传入 workspaceId)
|
||||
listWorkspaces: () => rawApi.listWorkspaces(),
|
||||
listWorkspaces: (input) => rawApi.listWorkspaces(input),
|
||||
createWorkspace: (input) => rawApi.createWorkspace(input),
|
||||
updateWorkspace: (workspaceId, input) => rawApi.updateWorkspace(workspaceId, input),
|
||||
deleteWorkspace: (workspaceId) => rawApi.deleteWorkspace(workspaceId),
|
||||
|
||||
Reference in New Issue
Block a user