Add fields

pull/73/head
MillenniumEarl 2021-02-21 14:40:36 +01:00
parent a3c2eb81b8
commit 7c74cacb6b
1 changed files with 15 additions and 3 deletions

View File

@ -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[];
}