add samesite cookie to cookie keys

This commit is contained in:
Raphael Deem 2017-12-24 02:33:52 -08:00
parent 04b04f094c
commit 5ee35e7eeb

View File

@ -83,6 +83,7 @@ class Cookie(dict):
"secure": "Secure",
"httponly": "HttpOnly",
"version": "Version",
"samesite": "SameSite",
}
_flags = {'secure', 'httponly'}