Merge pull request #459 from bigcapitalhq/skip-sending-confirm-email-if-disabled

fix: skip send confirmation email if disabled
This commit is contained in:
Ahmed Bouhuolia
2024-05-30 18:38:17 +02:00
committed by GitHub
2 changed files with 7 additions and 0 deletions

View File

@@ -11,6 +11,9 @@ export interface ISystemUser extends Model {
password: string;
email: string;
verifyToken: string;
verified: boolean;
roleId: number;
tenantId: number;