chore: add forwarder address for users

This commit is contained in:
mahyargdz
2025-07-15 16:31:58 +03:30
parent 63ddd394c9
commit 81a3f583a7
5 changed files with 43 additions and 6 deletions
@@ -42,6 +42,9 @@ export class User extends BaseEntity {
@Property({ type: "timestamptz", nullable: true })
lastQuotaSync?: Date;
@Property({ type: "json", nullable: true })
forwarders?: string[];
@Property({ default: true, nullable: false })
isActive: boolean & Opt;