update create user button, reset password button
Build and Release / release (push) Successful in 32s

This commit is contained in:
2026-05-12 14:49:10 +07:00
parent c13ddb37fc
commit 6cf592cc57
7 changed files with 263 additions and 9 deletions
+13
View File
@@ -1,3 +1,4 @@
import { IS_SEND_EMAIL } from './../../constant';
import { Profile, UserRole } from "@/interface/user";
export interface getUserDto {
@@ -39,4 +40,16 @@ export interface responseUserTable {
total_records: number;
total_pages: number;
};
}
export interface resetPassword {
is_send_email: boolean;
new_password: string;
}
export interface createUser {
email: string;
display_name: string;
password: string;
role_ids: string[];
}