Add information around the User interface

This commit is contained in:
Joseph Milazzo 2020-12-24 10:42:01 -06:00
parent c9759bc3d1
commit 01e9a1025d

View file

@ -1,6 +1,6 @@
// This interface is only used for login and storing/retreiving JWT from local storage
export interface User { export interface User {
username: string; username: string;
token: string; token: string;
photoUrl?: string;
roles: string[]; roles: string[];
} }