Skip to content

Commit

Permalink
fix(user): remove unused password service providers
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMaz committed Dec 21, 2023
1 parent eebaf72 commit 12fc1d5
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions packages/nestjs-user/src/user.module-definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,7 @@ import {
} from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { createSettingsProvider } from '@concepta/nestjs-common';
import {
PasswordCreationService,
PasswordStorageService,
PasswordStrengthService,
PasswordValidationService,
} from '@concepta/nestjs-password';
import { PasswordCreationService } from '@concepta/nestjs-password';
import {
getDynamicRepositoryToken,
TypeOrmExtModule,
Expand Down Expand Up @@ -91,9 +86,6 @@ export function createUserProviders(options: {
...(options.providers ?? []),
UserCrudService,
PasswordCreationService,
PasswordValidationService,
PasswordStorageService,
PasswordStrengthService,
InvitationAcceptedListener,
InvitationGetUserListener,
createUserSettingsProvider(options.overrides),
Expand Down

0 comments on commit 12fc1d5

Please sign in to comment.