summaryrefslogtreecommitdiffstats
path: root/accounts/models.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove service passwords featureremove-service-passwordsJonah Brüchert2024-05-071-33/+3
|
* Format projectJonah Brüchert2024-03-291-9/+19
| | | | | | To allow automatically formatting changes in the future. Command used: black -l 79 accounts/
* Enforce types in variablesJonah Brüchert2024-03-291-1/+1
|
* Enforce types in function callsJonah Brüchert2024-03-291-2/+2
|
* Add some type annotationsJonah Brüchert2024-03-281-17/+32
|
* Revert "Fixed recursion while deepcopy(Account)"Vincent Post2023-05-221-2/+1
| | | | This reverts commit 74aa9fa461302441ddea3a87c3e0f938dc6bdc2b.
* pushed flask to 0.11Vincent Post2023-05-221-1/+1
|
* Fixed recursion while deepcopy(Account)Vincent Post2023-05-221-1/+2
|
* 2to3: UTF-8 is now default in Python 3Vincent Post2023-05-221-13/+2
|
* 2to3 -w accounts contribVincent Post2023-05-221-6/+6
|
* backend/user: Add uidNumberAlexander Sulfrian2016-10-041-1/+2
|
* models: Fix commentAlexander Sulfrian2016-09-301-1/+3
|
* models: Remove unused attributeAlexander Sulfrian2016-09-291-2/+1
|
* Code styleAlexander Sulfrian2016-02-021-5/+5
|
* Account: Support direct setting of attributesAlexander Sulfrian2016-02-021-0/+8
| | | | | | | | | | | | | | | 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.
* Fix commentAlexander Sulfrian2016-02-021-3/+2
|
* Use Flask-Login for login handlingAlexander Sulfrian2016-02-021-1/+13
|
* Create models.py with Account and ServiceAlexander Sulfrian2016-02-021-0/+74