summary refs log tree commit diff
path: root/src/util
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2026-03-06 00:25:59 +0100
committerRory& <root@rory.gay>2026-03-06 00:25:59 +0100
commit3f756629e61c19eff57bd35c809585b77706f8e2 (patch)
treee80c4577db42fc47047bcf6157d375db8ddec023 /src/util
parentInline pointless const for session_id (diff)
downloadserver-ts-3f756629e61c19eff57bd35c809585b77706f8e2.tar.xz
Log creation of new sessions, fix some comments
Diffstat (limited to 'src/util')
-rw-r--r--src/util/util/Token.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/util/util/Token.ts b/src/util/util/Token.ts

index ba5d427d..81063ec0 100644 --- a/src/util/util/Token.ts +++ b/src/util/util/Token.ts
@@ -42,8 +42,10 @@ export type UserTokenData = { decoded: { id: string; iat: number; - ver?: number; // token format version - did?: string; // device id + // token format version + ver?: number; + // device id + did?: string; }; };