mirror of
https://github.com/immich-app/immich.git
synced 2026-03-27 12:20:52 +03:00
chore(server): use absolute import paths (#8080)
update server to use absolute import paths
This commit is contained in:
7
server/test/fixtures/library.stub.ts
vendored
7
server/test/fixtures/library.stub.ts
vendored
@@ -1,7 +1,8 @@
|
||||
import { APP_MEDIA_LOCATION, THUMBNAIL_DIR } from '@app/domain';
|
||||
import { LibraryEntity, LibraryType } from '@app/infra/entities';
|
||||
import { join } from 'node:path';
|
||||
import { userStub } from './user.stub';
|
||||
import { APP_MEDIA_LOCATION } from 'src/domain/domain.constant';
|
||||
import { THUMBNAIL_DIR } from 'src/domain/storage/storage.core';
|
||||
import { LibraryEntity, LibraryType } from 'src/infra/entities/library.entity';
|
||||
import { userStub } from 'test/fixtures/user.stub';
|
||||
|
||||
export const libraryStub = {
|
||||
uploadLibrary1: Object.freeze<LibraryEntity>({
|
||||
|
||||
Reference in New Issue
Block a user