mirror of
https://github.com/immich-app/immich.git
synced 2024-12-23 02:06:15 +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,
|
|
};
|