Files
ghostfolio/apps/api/src/app/user/interfaces/user-item.interface.ts
Thomas Kaul 82069da4e2 Bugfix/fix user account creation (#682)
* Fix the user account creation

* Update changelog
2022-02-06 21:40:26 +01:00

8 lines
129 B
TypeScript

import { Role } from '@prisma/client';
export interface UserItem {
accessToken?: string;
authToken: string;
role: Role;
}