feat(core): Show Public API key value only once (no-changelog) (#10126)

This commit is contained in:
Ricardo Espinoza
2024-07-29 14:13:54 -04:00
committed by GitHub
parent de50ef7590
commit cf70b06545
7 changed files with 42 additions and 14 deletions

View File

@@ -104,7 +104,7 @@ export class User extends WithTimestamps implements IUser {
@Column({ type: String, nullable: true })
@Index({ unique: true })
apiKey?: string | null;
apiKey: string | null;
@Column({ type: Boolean, default: false })
mfaEnabled: boolean;