diff --git a/apps/server/src/modules/h5p-editor/entity/base-entity-with-timestamp.entity.ts b/apps/server/src/modules/h5p-editor/entity/h5p-editor-tempfile.entity.ts similarity index 100% rename from apps/server/src/modules/h5p-editor/entity/base-entity-with-timestamp.entity.ts rename to apps/server/src/modules/h5p-editor/entity/h5p-editor-tempfile.entity.ts diff --git a/apps/server/src/modules/h5p-editor/entity/index.ts b/apps/server/src/modules/h5p-editor/entity/index.ts index 7aa4836e40b..e95c0f12c94 100644 --- a/apps/server/src/modules/h5p-editor/entity/index.ts +++ b/apps/server/src/modules/h5p-editor/entity/index.ts @@ -1,3 +1,3 @@ export * from './h5p-content.entity'; export * from './library.entity'; -export * from './base-entity-with-timestamp.entity'; +export * from './h5p-editor-tempfile.entity'; diff --git a/apps/server/src/modules/h5p-editor/service/temporary-file-storage.service.spec.ts b/apps/server/src/modules/h5p-editor/service/temporary-file-storage.service.spec.ts index 0dd11c1a309..bcbdfa9945c 100644 --- a/apps/server/src/modules/h5p-editor/service/temporary-file-storage.service.spec.ts +++ b/apps/server/src/modules/h5p-editor/service/temporary-file-storage.service.spec.ts @@ -6,7 +6,7 @@ import { File, S3ClientAdapter } from '@shared/infra/s3-client'; import { ReadStream } from 'fs'; import { Readable } from 'node:stream'; import { GetH5pFileResponse } from '../controller/dto'; -import { H5pEditorTempFile } from '../entity/base-entity-with-timestamp.entity'; +import { H5pEditorTempFile } from '../entity/h5p-editor-tempfile.entity'; import { H5P_CONTENT_S3_CONNECTION } from '../h5p-editor.config'; import { TemporaryFileRepo } from '../repo/temporary-file.repo'; import { TemporaryFileStorage } from './temporary-file-storage.service'; diff --git a/apps/server/src/modules/h5p-editor/service/temporary-file-storage.service.ts b/apps/server/src/modules/h5p-editor/service/temporary-file-storage.service.ts index a5bc817b732..6bfa164e630 100644 --- a/apps/server/src/modules/h5p-editor/service/temporary-file-storage.service.ts +++ b/apps/server/src/modules/h5p-editor/service/temporary-file-storage.service.ts @@ -4,7 +4,7 @@ import { S3ClientAdapter } from '@shared/infra/s3-client'; import { ReadStream } from 'fs'; import { Readable } from 'stream'; import { H5pFileDto } from '../controller/dto/h5p-file.dto'; -import { H5pEditorTempFile } from '../entity/base-entity-with-timestamp.entity'; +import { H5pEditorTempFile } from '../entity/h5p-editor-tempfile.entity'; import { H5P_CONTENT_S3_CONNECTION } from '../h5p-editor.config'; import { TemporaryFileRepo } from '../repo/temporary-file.repo';