Also fix CSRF token. This was probably broken since csurf middleware was modified to use cookie instead of session storage to provide support for single page app (SPA).
7 lines
98 B
TypeScript
7 lines
98 B
TypeScript
export interface IUser {
|
|
id: number
|
|
username: string
|
|
firstName: string
|
|
lastName: string
|
|
}
|