mirror of
https://github.com/immich-app/immich.git
synced 2026-02-12 03:47:51 +03:00
11 lines
244 B
TypeScript
11 lines
244 B
TypeScript
import { AuthDto } from 'src/domain/auth/auth.dto';
|
|
import { UserEntity } from 'src/infra/entities/user.entity';
|
|
|
|
export const CLI_USER: AuthDto = {
|
|
user: {
|
|
id: 'cli',
|
|
email: 'cli@immich.app',
|
|
isAdmin: true,
|
|
} as UserEntity,
|
|
};
|