def get_auth(auth: Auth): return { 'user_id': auth.get_user_id(), 'display_name': auth.get_display_name(), 'is_authenticated': auth.is_authenticated() }
def me(auth: Auth): return { "is_authenticated": auth.is_authenticated(), "username": auth.get_display_name(), }
def display_user(auth: Auth): return { 'is_authenticated': auth.is_authenticated(), 'user': auth.get_display_name(), }