fix(users): repair create delete and duplicate email handling
This commit is contained in:
parent
155fdbb16a
commit
0bbcaba211
22 changed files with 773 additions and 107 deletions
9
validation-suite/frontend/atlas/lib/users-query.d.ts
vendored
Normal file
9
validation-suite/frontend/atlas/lib/users-query.d.ts
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
export function buildUsersQueryParams(input: {
|
||||
page: number;
|
||||
pageSize: number;
|
||||
search?: string;
|
||||
role?: string;
|
||||
active?: boolean | null;
|
||||
sortBy: string;
|
||||
sortOrder: "asc" | "desc";
|
||||
}): URLSearchParams;
|
||||
Loading…
Add table
Add a link
Reference in a new issue