diff options
author | 2018-04-08 01:07:41 +0100 | |
---|---|---|
committer | 2018-04-08 01:07:41 +0100 | |
commit | 8235adbecdf09ffe2e8b7a04a38d0be2d86fd5d4 (patch) | |
tree | c126eef18d6bb10306d577bb5673a1f2a1bb2e88 /pysite/oauth.py | |
parent | [Wiki] Shorten edit/view links in sidebar (diff) |
Easier debugging and optimised imports
Simply set FLASK_DEBUG=1 in your env to skip OAuth checks
Diffstat (limited to 'pysite/oauth.py')
-rw-r--r-- | pysite/oauth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pysite/oauth.py b/pysite/oauth.py index ef86aa8a..86a2024d 100644 --- a/pysite/oauth.py +++ b/pysite/oauth.py @@ -84,4 +84,4 @@ class OauthBackend(BaseBackend): def logout(self): sess_id = session.get("session_id") if sess_id and self.db.get(OAUTH_DATABASE, sess_id): # If user exists in db, - self.db.delete(OAUTH_DATABASE, sess_id) # remove them (at least, their session) + self.db.delete(OAUTH_DATABASE, sess_id) # remove them (at least, their session) |