introduce the jwt-guard

This commit is contained in:
Sven Czarnian
2022-11-03 01:09:30 +01:00
والد 0827ccd1b1
کامیت 1d7f9e7e5a

مشاهده پرونده

@@ -0,0 +1,5 @@
import { Injectable } from '@nestjs/common';
import { AuthGuard } from '@nestjs/passport';
@Injectable()
export class JwtGuard extends AuthGuard('jwt') {}