Answer the question
In order to leave comments, you need to log in
How to inject JwtService in AuthorizationGuard (NestJS)?
I have some AuthorizationGuard
@Injectable()
export class AuthGuard implements CanActivate {
canActivate(
context: ExecutionContext,
): boolean | Promise<boolean> | Observable<boolean> {
return false
}
}
JwtModule
that contains JwtService
. constructor(private readonly JwtService: JwtService) {}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question