refactor(geoip): reconcile geoip system (#31)

This commit is contained in:
hampus-fluxer
2026-01-05 23:19:05 +01:00
committed by GitHub
parent 5d047b2856
commit 2e007b5076
86 changed files with 982 additions and 2648 deletions

View File

@@ -22,7 +22,7 @@ export type AuthSession = Readonly<{
approx_last_used_at: string | null;
client_os: string;
client_platform: string;
client_location: string;
client_location: string | null;
}>;
export class AuthSessionRecord {
@@ -30,7 +30,7 @@ export class AuthSessionRecord {
readonly approxLastUsedAt: Date | null;
readonly clientOs: string;
readonly clientPlatform: string;
readonly clientLocation: string;
readonly clientLocation: string | null;
constructor(data: AuthSession) {
this.id = data.id;