we store user token in session storage now

This commit is contained in:
maciekglowacki
2020-10-21 18:34:59 +02:00
parent 99d878762e
commit a4ff47bdb5
24 changed files with 265 additions and 28 deletions

View File

@ -30,5 +30,5 @@ export interface Course {
export interface User {
name?: string;
surname?: string;
ticket: string | null;
token: string | null;
}