Этот коммит содержится в:
Lynne Megido 2018-11-13 22:10:13 +10:00
родитель 8928f691e1
Коммит 2eb2a7701d
Подписано: lynnesbian
Идентификатор ключа GPG: FB7B970303ACE499
2 изменённых файлов: 7 добавлений и 3 удалений

Просмотреть файл

@ -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
Просмотреть файл

@ -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():