fix(server): immich command (#5408)

* fix: immich command

* chore: use absolute paths
This commit is contained in:
Jason Rasmussen 2023-11-30 15:59:47 -05:00 committed by GitHub
parent 5e55a17b2a
commit 6e365b37db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 11 additions and 18 deletions

View file

@ -0,0 +1,9 @@
import { AuthUserDto } from '@app/domain';
export const CLI_USER: AuthUserDto = {
id: 'cli',
email: 'cli@immich.app',
isAdmin: true,
isPublicUser: false,
isAllowUpload: true,
};