feat: Filter user listings by deactivation status, include a total count in the response, and simplify account activation to use user ID directly.

This commit is contained in:
JakkrapartXD 2026-01-16 11:16:51 +07:00
parent 000de75dd1
commit 8960e90dbd
2 changed files with 9 additions and 6 deletions

View file

@ -6,6 +6,7 @@ import { ProfileUpdate, UserResponse } from "./user.types";
export interface ListUsersResponse {
code: number;
message: string;
total: number;
data: UserResponse[] | null;
}