added debug flag
This commit is contained in:
parent
8928f691e1
commit
2eb2a7701d
2 changed files with 7 additions and 3 deletions
|
@ -7,5 +7,6 @@
|
|||
"dbname":"curiousgreg",
|
||||
"min_time_between_checks":1,
|
||||
"max_time_between_checks":60,
|
||||
"base_uri":"http://localhost:5000"
|
||||
"base_uri":"http://localhost:5000",
|
||||
"debug":false
|
||||
}
|
||||
|
|
7
web.py
7
web.py
|
@ -90,9 +90,12 @@ def home():
|
|||
return redirect(url_for('main'))
|
||||
|
||||
|
||||
@app.route('/debug') #TODO: remove this before making the site live ;p
|
||||
@app.route('/debug')
|
||||
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')
|
||||
def reset_session():
|
||||
|
|
Loading…
Reference in a new issue