I'm trying to use the current user in my view from flask-login. So I tried to use the g
object
I'm assigning flask.ext.login.current_user
to the g
object
@pot.before_request
def load_users():
g.user = current_user.username
It works if the user is correct. But when I sign-up or login with the wrong credentials I get this error:
`AttributeError: 'AnonymousUserMixin' object has no attribute 'username'`
Please enlight me where am I wrong...
get_id
should be a method that returnsNone
, not "None" itself. – Karissakarita