diff --git a/classes/UserLoginMigrationAlreadyClosedLoggableException.html b/classes/UserLoginMigrationAlreadyClosedLoggableException.html index 0b8b4901db2..a93d0e4e478 100644 --- a/classes/UserLoginMigrationAlreadyClosedLoggableException.html +++ b/classes/UserLoginMigrationAlreadyClosedLoggableException.html @@ -122,7 +122,7 @@

Constructor

-constructor(userLoginMigrationId: EntityId, closedAt: Date) +constructor(closedAt: Date, userLoginMigrationId?: EntityId) @@ -145,10 +145,10 @@

Constructor

- userLoginMigrationId + closedAt - EntityId + Date @@ -157,14 +157,14 @@

Constructor

- closedAt + userLoginMigrationId - Date + EntityId - No + Yes @@ -235,7 +235,7 @@

import { ErrorLogMessage, Loggable, LogMessage, ValidationErrorLogMessage } from '@src/core/logger'; export class UserLoginMigrationAlreadyClosedLoggableException extends UnprocessableEntityException implements Loggable { - constructor(private readonly userLoginMigrationId: EntityId, private readonly closedAt: Date) { + constructor(private readonly closedAt: Date, private readonly userLoginMigrationId?: EntityId) { super(); } diff --git a/classes/UserLoginMigrationMandatoryLoggable.html b/classes/UserLoginMigrationMandatoryLoggable.html index 537c486707c..1f87ff08a78 100644 --- a/classes/UserLoginMigrationMandatoryLoggable.html +++ b/classes/UserLoginMigrationMandatoryLoggable.html @@ -116,7 +116,7 @@

Constructor

-constructor(userId: EntityId, userLoginMigrationId: EntityId, mandatory: boolean) +constructor(userId: EntityId, userLoginMigrationId: EntityId | undefined, mandatory: boolean) @@ -154,7 +154,7 @@

Constructor

userLoginMigrationId - EntityId + EntityId | undefined @@ -242,7 +242,7 @@

export class UserLoginMigrationMandatoryLoggable implements Loggable { constructor( private readonly userId: EntityId, - private readonly userLoginMigrationId: EntityId, + private readonly userLoginMigrationId: EntityId | undefined, private readonly mandatory: boolean ) {} diff --git a/classes/UserLoginMigrationStartLoggable.html b/classes/UserLoginMigrationStartLoggable.html index b5b537d4941..741fb50b32b 100644 --- a/classes/UserLoginMigrationStartLoggable.html +++ b/classes/UserLoginMigrationStartLoggable.html @@ -116,7 +116,7 @@

Constructor

-constructor(userId: EntityId, userLoginMigrationId: EntityId) +constructor(userId: EntityId, userLoginMigrationId: EntityId | undefined) @@ -154,7 +154,7 @@

Constructor

userLoginMigrationId - EntityId + EntityId | undefined @@ -228,7 +228,7 @@

import { ErrorLogMessage, Loggable, LogMessage, ValidationErrorLogMessage } from '@src/core/logger'; export class UserLoginMigrationStartLoggable implements Loggable { - constructor(private readonly userId: EntityId, private readonly userLoginMigrationId: EntityId) {} + constructor(private readonly userId: EntityId, private readonly userLoginMigrationId: EntityId | undefined) {} getLogMessage(): LogMessage | ErrorLogMessage | ValidationErrorLogMessage { return { diff --git a/coverage.html b/coverage.html index df38c06844e..ddfb3d9f20d 100644 --- a/coverage.html +++ b/coverage.html @@ -13807,18 +13807,6 @@ (0/4) - - - - apps/server/src/modules/user-login-migration/service/dto/school-migration-flags.ts - - interface - SchoolMigrationFlags - - 0 % - (0/3) - - @@ -13828,7 +13816,7 @@ MigrationCheckService 0 % - (0/3) + (0/5) diff --git a/injectables/MigrationCheckService.html b/injectables/MigrationCheckService.html index 288a54a452e..3b3ca655ec6 100644 --- a/injectables/MigrationCheckService.html +++ b/injectables/MigrationCheckService.html @@ -85,6 +85,15 @@

Methods