summaryrefslogtreecommitdiffstats
path: root/accounts/views/default
Commit message (Collapse)AuthorAgeFilesLines
* Remove service passwords featureremove-service-passwordsJonah Brüchert2024-05-071-20/+1
|
* Improve exception handlingJonah Brüchert2024-03-291-8/+19
|
* Format projectJonah Brüchert2024-03-291-72/+103
| | | | | | To allow automatically formatting changes in the future. Command used: black -l 79 accounts/
* Enforce types in variablesJonah Brüchert2024-03-291-1/+1
|
* Add some type annotationsJonah Brüchert2024-03-281-26/+30
|
* pushed flask to 0.11Vincent Post2023-05-221-1/+1
|
* 2to3 -w accounts contribVincent Post2023-05-221-17/+17
|
* views: Use error handler for all exceptionsAlexander Sulfrian2016-10-041-1/+7
|
* index: Update user without admin rightsAlexander Sulfrian2016-04-051-1/+1
| | | | | The ACLs of the LDAP server are adjusted, so that an update does not require admin rights anymore.
* lost_password: Fix confirmationroot2016-02-291-1/+1
| | | | All confirmations return tuple with the data.
* Code styleAlexander Sulfrian2016-02-021-5/+5
|
* forms: No need to supply request.form to the FormsAlexander Sulfrian2016-02-021-5/+5
| | | | The wtforms classes get the request data by default.
* templates/mail: Get all parts from the templateAlexander Sulfrian2016-02-021-25/+9
| | | | | | | 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.
* Account: Support direct setting of attributesAlexander Sulfrian2016-02-021-2/+2
| | | | | | | | | | | | | | | Direct access to additional attributes was possible before, but setting the same value, created a new local property: >>> acc = Account(...) >>> acc.mail == acc.attributes['mail'] True >>> acc.mail = "foobar" >>> acc.mail == acc.attributes['mail'] False Not also assignments are possible and all assignments to unknown properties will create new attributes.
* Create new login blueprintAlexander Sulfrian2016-02-021-32/+4
| | | | The login and logout view are now in the login blueprint.
* Rename views: settings->index, index->loginAlexander Sulfrian2016-02-021-17/+17
|
* Use Flask-Login for login handlingAlexander Sulfrian2016-02-021-30/+31
|
* Use URLSafeTimedSerializer for confirmation tokenAlexander Sulfrian2016-02-021-5/+6
|
* Create models.py with Account and ServiceAlexander Sulfrian2016-02-021-1/+1
|
* Encrypt the session data by defaultAlexander Sulfrian2016-02-021-2/+2
| | | | | Before we just encrypted the password, now we encrypt the whole session information by default.
* Remove context_processor with single useAlexander Sulfrian2016-02-021-1/+3
| | | | | If we need the variable only in a single view, we can simply supply this value for this single view.
* Move general views into blueprintAlexander Sulfrian2016-02-021-0/+246
The use of a default blueprint allows more independence of the app object.