Skip to content

Commit

Permalink
fix missing dependency for refrehs interceptor
Browse files Browse the repository at this point in the history
  • Loading branch information
Michelle Laurenti committed Mar 20, 2024
1 parent c97d78b commit adb786f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/security/security.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ export class SecurityModule {
},
];

const exports: DynamicModule["exports"] = [JwtVerificationService];
const exports: DynamicModule["exports"] = [
JwtVerificationService,
SECURITY_CONFIG_INJECTION_KEY,
];

if (options.imports) {
imports.push(...options.imports);
Expand Down

0 comments on commit adb786f

Please sign in to comment.