mirror of
https://github.com/immich-app/immich
synced 2026-08-22 13:13:05 +00:00
9 lines
189 B
TypeScript
9 lines
189 B
TypeScript
import { AuthUserDto } from '@app/domain';
|
|
|
|
export const CLI_USER: AuthUserDto = {
|
|
id: 'cli',
|
|
email: 'cli@immich.app',
|
|
isAdmin: true,
|
|
isPublicUser: false,
|
|
isAllowUpload: true,
|
|
};
|