I'm building my back-end using NestJS using JWT for authentication. On routes that required the token to be authenticated, is there a way for me to decode the token and get all the property of it?
On my token I have a property that I need to verify on a method, how can I do that?
I'm using NestJS Passport AuthGuard as argument on @UseGuard().