summaryrefslogtreecommitdiffstats
path: root/accounts/utils/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* Add some type annotationsJonah BrĂ¼chert2024-03-281-9/+5
|
* 2to3 -w accounts contribVincent Post2023-05-221-3/+3
|
* Code styleAlexander Sulfrian2016-02-021-6/+1
|
* templates/mail: Get all parts from the templateAlexander Sulfrian2016-02-021-12/+0
| | | | | | | Also render sender and subject with the mail template, so the mails can be created with only a template name, a recipient and the template args. The required confirmation links are also generated in the templates.
* utils: Drop custom url_forAlexander Sulfrian2016-02-021-13/+2
| | | | Since flask-0.9 we can use config.PREFERRED_URL_SCHEME.
* forms: Move regexp from utilsAlexander Sulfrian2016-02-021-4/+0
| | | | | The username and username_exclude regexp are only used in the forms, so we move the definition there.
* Use Flask-Login for login handlingAlexander Sulfrian2016-02-021-48/+1
|
* Use URLSafeTimedSerializer for confirmation tokenAlexander Sulfrian2016-02-021-85/+3
|
* Create models.py with Account and ServiceAlexander Sulfrian2016-02-021-11/+0
|
* Use consistent exceptions for all user backendsAlexander Sulfrian2016-02-021-4/+2
| | | | | | Now all backends raise custom exception types and does not forward the internal exception types. So there is no need to import the ldap module in other modules.
* Encrypt the session data by defaultAlexander Sulfrian2016-02-021-28/+1
| | | | | Before we just encrypted the password, now we encrypt the whole session information by default.
* Create utils packageAlexander Sulfrian2016-02-021-0/+250