summaryrefslogtreecommitdiffstats
path: root/accounts/utils/sessions.py
Commit message (Collapse)AuthorAgeFilesLines
* Format projectJonah Brüchert2024-03-291-10/+11
| | | | | | To allow automatically formatting changes in the future. Command used: black -l 79 accounts/
* Enforce types in function callsJonah Brüchert2024-03-291-1/+1
|
* Port to flask 3Jonah Brüchert2024-03-281-12/+15
| | | | | Flask 3 doesn't like cookies as bytes any more, so encode everything as bas64 before passing to Flask
* Add some type annotationsJonah Brüchert2024-03-281-4/+8
|
* called __init__ of parent class in EncryptedSerializer to populate all ↵Vincent Post2023-05-221-0/+1
| | | | attributes
* 2to3: UTF-8 is now default in Python 3Vincent Post2023-05-221-1/+1
|
* 2to3 -w accounts contribVincent Post2023-05-221-1/+1
|
* Code styleAlexander Sulfrian2016-02-021-4/+2
|
* utils/sessions: Automatic permanent sessionsAlexander Sulfrian2016-02-021-8/+15
|
* Encrypt the session data by defaultAlexander Sulfrian2016-02-021-0/+62
Before we just encrypted the password, now we encrypt the whole session information by default.