guards listos

This commit is contained in:
xXpuma99Xx
2022-04-21 22:55:12 -05:00
parent d1ed756ddf
commit a3a8402e76
2 changed files with 7 additions and 2 deletions
+4 -1
View File
@@ -13,5 +13,8 @@ export class JwtStrategyService extends PassportStrategy(Strategy) {
});
}
validate(payload: JwtPayload) {}
validate(payload: JwtPayload) {
console.log(payload);
return true;
}
}