If I had a user object stored in the session, I could retrieve the user name in twig using somthing like:
app.session.get('user').UserName
But my user object (UserInterface) resides in the security context, more specifically in the user field of the userToken (TokenInterface) object. How can I access values inside the user object from twig? I am thinking of something along the lines of:
app.security.context.token.user.[my_user_property]