新增锁定后解锁操作

pull/82/head^2
awenes 8 months ago
parent 88bb33b8e9
commit 96c8f510f3

@ -328,6 +328,15 @@ export async function disableUser(id: string): Promise<API.ApiResult<boolean>> {
});
}
/**
* UnLock User
*/
export async function unlockUser(id: string): Promise<API.ApiResult<boolean>> {
return request(`/api/v1/user/unlock/${id}`, {
method: 'PUT',
});
}
/**
* Get user list not in group
*/

Loading…
Cancel
Save