diff --git a/src/models/User.ts b/src/models/User.ts index 4cef39c6..27e20e1c 100644 --- a/src/models/User.ts +++ b/src/models/User.ts @@ -15,6 +15,7 @@ export interface User { hash: string; // hash of the password, salt is saved in password (bcrypt) valid_tokens_since: number; // all tokens with a previous issue date are invalid user_settings: UserSettings; + guilds: bigint[] // array of guild ids the user is part of } export interface UserSettings {