Log IP addresses used during registration

Closes #836
This commit is contained in:
наб 2025-07-13 06:15:45 +02:00
parent 5dd32123a3
commit 132c25b271
No known key found for this signature in database
GPG key ID: BCFD0B018D2658F1
3 changed files with 54 additions and 1 deletions

View file

@ -37,4 +37,10 @@ export class MiUserPending {
nullable: true,
})
public reason: string;
@Column('varchar', {
length: 128,
nullable: true,
})
public requestOriginIp: string | null;
}