added debug flag

This commit is contained in:
Lynne Megido 2018-11-13 22:10:13 +10:00
parent 8928f691e1
commit 2eb2a7701d
Signed by: lynnesbian
GPG Key ID: FB7B970303ACE499
2 changed files with 7 additions and 3 deletions

View File

@ -7,5 +7,6 @@
"dbname":"curiousgreg", "dbname":"curiousgreg",
"min_time_between_checks":1, "min_time_between_checks":1,
"max_time_between_checks":60, "max_time_between_checks":60,
"base_uri":"http://localhost:5000" "base_uri":"http://localhost:5000",
"debug":false
} }

7
web.py
View File

@ -90,9 +90,12 @@ def home():
return redirect(url_for('main')) return redirect(url_for('main'))
@app.route('/debug') #TODO: remove this before making the site live ;p @app.route('/debug')
def print_debug_info(): def print_debug_info():
return json.dumps(session._get_current_object()) if cfg['debug']:
return json.dumps(session._get_current_object())
else:
return redirect('/home')
@app.route('/logout') @app.route('/logout')
def reset_session(): def reset_session():