Fix captcha part 2: don't store captcha answer in session cookie

This commit is contained in:
simon987
2019-02-03 09:01:21 -05:00
parent e8965497d4
commit 204b82b71f
4 changed files with 10 additions and 2 deletions

1
app.py
View File

@@ -9,6 +9,7 @@ app = Flask(__name__)
app.secret_key = config.FLASK_SECRET
template_filters.setup_template_filters(app)
views.setup_views(app)
api.setup_api(app)