mbr / flask-kvsession

A drop-in replacement for Flask's session handling using server-side sessions.
http://pythonhosted.org/Flask-KVSession/
MIT License
168 stars 53 forks source link

Respect Flask's SESSION_COOKIE_HTTPONLY and SESSION_COOKIE_SECURE flags #17

Closed markhildreth closed 11 years ago

markhildreth commented 11 years ago

This will cause flask-kvsession to set the HttpOnly and Secure flags on the cookie based on the values in Flask's SESSION_COOKIE_HTTPONLY and SESSION_COOKIE_SECURE flags, respectively.

mbr commented 11 years ago

Looks good, thanks!