etiquette/frontends/etiquette_flask/backend
Ethan Dalool 049d620789 Convert cookies to werkzeug MultiDict instead of plain dict.
I discovered that werkzeug stores cookies in lists, with its .get
returning only the first item of the list. By converting the cookies
to a plain dict, I was breaking that functionality of cookies.get.
So, using werkzeug's MultiDict is the correct choice.
2020-09-09 18:53:26 -07:00
..
endpoints Remove unnecessary intermediate variable view. 2020-09-09 13:15:21 -07:00
__init__.py Rename the etiquette_flask backend package to backend. 2018-11-04 19:45:23 -08:00
caching.py Remove unused imports & other small things. 2020-02-20 22:44:56 -08:00
common.py Use decorators in jinja_filters to automatically register them. 2020-09-09 13:23:16 -07:00
decorators.py Rename the etiquette_flask backend package to backend. 2018-11-04 19:45:23 -08:00
helpers.py Don't leave falsey values out of dict_to_params, let caller do it. 2020-03-28 17:37:28 -07:00
jinja_filters.py Use decorators in jinja_filters to automatically register them. 2020-09-09 13:23:16 -07:00
jsonify.py Rename the etiquette_flask backend package to backend. 2018-11-04 19:45:23 -08:00
sessions.py Convert cookies to werkzeug MultiDict instead of plain dict. 2020-09-09 18:53:26 -07:00