mirror of
https://github.com/immich-app/immich.git
synced 2025-04-16 12:18:51 +02:00
10 lines
189 B
TypeScript
10 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,
|
||
|
};
|