introduce the jwt-guard

This commit is contained in:
Sven Czarnian
2022-11-03 01:09:30 +01:00
parent 0827ccd1b1
commit 1d7f9e7e5a

View File

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