I want to know if there is a decorator that makes the req.user object available in a controller method, if the user is logged in (Authaurization header sent), if not then just let the req.user be null.
The AuthGuard decorator will return 401 if the user is not logged in, so it's not suitable for my case.