feat: Tick all levels that the user has completed

This commit is contained in:
Alexander Polynomdivision
2018-10-02 16:04:38 +02:00
parent d6f5ef4cc5
commit 26407b6cb7
5 changed files with 23 additions and 9 deletions

View File

@@ -5,6 +5,9 @@ export interface IUser {
score: number;
classId: string;
// Levels that the user has completed
levels: number[];
sessionToken: string;
};