Fix login error

This commit is contained in:
dominik-zeglen 2019-10-08 14:36:29 +02:00
parent 8539563897
commit 4110006e22
5 changed files with 0 additions and 10 deletions

View file

@ -15,8 +15,6 @@ export const fragmentUser = gql`
email
firstName
lastName
isStaff
note
permissions {
code
name

View file

@ -31,8 +31,6 @@ export interface SetPassword_setPassword_user {
email: string;
firstName: string;
lastName: string;
isStaff: boolean;
note: string | null;
permissions: (SetPassword_setPassword_user_permissions | null)[] | null;
avatar: SetPassword_setPassword_user_avatar | null;
}

View file

@ -31,8 +31,6 @@ export interface TokenAuth_tokenCreate_user {
email: string;
firstName: string;
lastName: string;
isStaff: boolean;
note: string | null;
permissions: (TokenAuth_tokenCreate_user_permissions | null)[] | null;
avatar: TokenAuth_tokenCreate_user_avatar | null;
}

View file

@ -25,8 +25,6 @@ export interface User {
email: string;
firstName: string;
lastName: string;
isStaff: boolean;
note: string | null;
permissions: (User_permissions | null)[] | null;
avatar: User_avatar | null;
}

View file

@ -25,8 +25,6 @@ export interface VerifyToken_tokenVerify_user {
email: string;
firstName: string;
lastName: string;
isStaff: boolean;
note: string | null;
permissions: (VerifyToken_tokenVerify_user_permissions | null)[] | null;
avatar: VerifyToken_tokenVerify_user_avatar | null;
}