From ea52b8088b6b0719d428de26c51e96a92cfb66bb Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Fri, 18 Sep 2015 22:08:10 +0200 Subject: With the new version of Flask-Login is_authenticated is now a property. --- pyaggr3g470r/views/api/common.py | 2 +- pyaggr3g470r/views/views.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'pyaggr3g470r/views') diff --git a/pyaggr3g470r/views/api/common.py b/pyaggr3g470r/views/api/common.py index acb5dd68..8083cb4c 100644 --- a/pyaggr3g470r/views/api/common.py +++ b/pyaggr3g470r/views/api/common.py @@ -45,7 +45,7 @@ def authenticate(func): if not getattr(func, 'authenticated', True): logged_in = True # authentication based on the session (already logged on the site) - elif 'email' in session or g.user.is_authenticated(): + elif 'email' in session or g.user.is_authenticated: logged_in = True else: # authentication via HTTP only diff --git a/pyaggr3g470r/views/views.py b/pyaggr3g470r/views/views.py index 560bd382..cf405fe4 100644 --- a/pyaggr3g470r/views/views.py +++ b/pyaggr3g470r/views/views.py @@ -93,7 +93,7 @@ def on_identity_loaded(sender, identity): @app.before_request def before_request(): g.user = current_user - if g.user.is_authenticated(): + if g.user.is_authenticated: g.user.last_seen = datetime.datetime.utcnow() db.session.add(g.user) db.session.commit() @@ -153,7 +153,7 @@ def login(): """ Log in view. """ - if g.user is not None and g.user.is_authenticated(): + if g.user is not None and g.user.is_authenticated: return redirect(url_for('home')) g.user = AnonymousUserMixin() form = SigninForm() @@ -197,7 +197,7 @@ def signup(): if int(os.environ.get("SELF_REGISTRATION", 0)) != 1: flash(gettext("Self-registration is disabled."), 'warning') return redirect(url_for('home')) - if g.user is not None and g.user.is_authenticated(): + if g.user is not None and g.user.is_authenticated: return redirect(url_for('home')) form = SignupForm() -- cgit