Jerko Steiner 30a8c56119 Fix test for User firstName & lastName
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).
2019-03-18 15:53:05 +05:00

7 lines
98 B
TypeScript

export interface IUser {
id: number
username: string
firstName: string
lastName: string
}