mirror of
https://github.com/immich-app/immich.git
synced 2025-05-30 19:54:52 -04:00
* Deprecate login scenarios that support pre-web era * refactor and simplify setup * Added user info to change password form * change isFistLogin column to shouldChangePassword * Implemented change user password * Implement the change password page for mobile * Change label * Added changes log and up minor version * Fixed typo in the release note * Up server version
10 lines
176 B
TypeScript
10 lines
176 B
TypeScript
export type ImmichUser = {
|
|
id: string;
|
|
email: string;
|
|
firstName: string;
|
|
lastName: string;
|
|
isAdmin: boolean;
|
|
profileImagePath: string;
|
|
shouldChangePassword: boolean;
|
|
};
|