jwt-auth.guard.ts 161 Bytes Raw Blame History Permalink 1 2 3 4 5 import { Injectable } from '@nestjs/common'; import { AuthGuard } from '@nestjs/passport'; @Injectable() export class JwtAuthGuard extends AuthGuard('jwt') { }