From b9f076ab9af735db5afebc867e40d05ddabda2ba Mon Sep 17 00:00:00 2001 From: wolfganggreschus Date: Sat, 25 Nov 2023 20:59:25 +0100 Subject: [PATCH] linting errors --- apps/server/src/shared/repo/user/user.repo.integration.spec.ts | 1 + apps/server/src/shared/repo/user/user.scope.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/apps/server/src/shared/repo/user/user.repo.integration.spec.ts b/apps/server/src/shared/repo/user/user.repo.integration.spec.ts index d8877dfd00e..58cda0810aa 100644 --- a/apps/server/src/shared/repo/user/user.repo.integration.spec.ts +++ b/apps/server/src/shared/repo/user/user.repo.integration.spec.ts @@ -3,6 +3,7 @@ import { NotFoundError } from '@mikro-orm/core'; import { EntityManager, ObjectId } from '@mikro-orm/mongodb'; import { Test, TestingModule } from '@nestjs/testing'; import { MatchCreator, SystemEntity, User } from '@shared/domain/entity'; +import { SortOrder } from '@shared/domain/interface'; import { cleanupCollections, importUserFactory, diff --git a/apps/server/src/shared/repo/user/user.scope.ts b/apps/server/src/shared/repo/user/user.scope.ts index af204514f12..a5576c18a2a 100644 --- a/apps/server/src/shared/repo/user/user.scope.ts +++ b/apps/server/src/shared/repo/user/user.scope.ts @@ -1,6 +1,7 @@ import { User } from '@shared/domain/entity'; import { EntityId } from '@shared/domain/types'; import { Scope } from '@shared/repo'; + export class UserScope extends Scope { isOutdated(isOutdated?: boolean): UserScope { if (isOutdated !== undefined) {