feat: expand admin and data sync workflows
This commit is contained in:
@@ -655,6 +655,10 @@ export function resetUserPassword(id: string, password: string): Promise<UserRow
|
||||
});
|
||||
}
|
||||
|
||||
export function deleteUser(id: string): Promise<void> {
|
||||
return apiFetch<void>(`/users/${id}`, { method: "DELETE" });
|
||||
}
|
||||
|
||||
/* ------------------------------------------- DB operations (admin only) */
|
||||
|
||||
export function listIngest(): Promise<IngestFile[]> {
|
||||
|
||||
Reference in New Issue
Block a user