mirror of https://gitee.com/topiam/eiam
✨ 新增锁定后解锁操作
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…
Reference in New Issue