mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
refactor: convert activity stub to a factory (#16702)
This commit is contained in:
parent
f82786a297
commit
2d106755f6
5 changed files with 135 additions and 127 deletions
|
|
@ -15,6 +15,14 @@ export type AuthApiKey = {
|
|||
permissions: Permission[];
|
||||
};
|
||||
|
||||
export type User = {
|
||||
id: string;
|
||||
name: string;
|
||||
email: string;
|
||||
profileImagePath: string;
|
||||
profileChangedAt: Date;
|
||||
};
|
||||
|
||||
export type AuthSharedLink = {
|
||||
id: string;
|
||||
expiresAt: Date | null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue