From 7c74cacb6b2a2677c4e1fbf9007d42e160b1feb1 Mon Sep 17 00:00:00 2001 From: MillenniumEarl Date: Sun, 21 Feb 2021 14:40:36 +0100 Subject: [PATCH] Add fields --- src/scripts/classes/user-data.ts | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/src/scripts/classes/user-data.ts b/src/scripts/classes/user-data.ts index 19e4b00..627cedb 100644 --- a/src/scripts/classes/user-data.ts +++ b/src/scripts/classes/user-data.ts @@ -11,9 +11,21 @@ export default class UserData { /** * Path to the user's profile picture. */ - avatarSrc: string = null; + avatar: string = null; /** - * List of followed game thread URLs. + * List of followed thread URLs. */ - watchedGameThreads: string[] = []; + watched: string[] = []; + /** + * List of bookmarked thread URLs. + */ + bookmarks: string[] = []; + /** + * List of notification messages for the user. + */ + notifications: string[] = []; + /** + * List of messages received. + */ + messages: string[]; }