fix: update role active field

This commit is contained in:
yassinedorbozgithub 2025-01-10 18:44:24 +01:00
parent 1936e6a0e7
commit 571ba1d568

View File

@ -31,7 +31,7 @@ export class RoleStub extends BaseSchema {
name: string;
@Prop({ type: Boolean, default: true })
active?: boolean;
active: boolean;
}
@Schema({ timestamps: true })