WAAAAAAAAAAA2

This commit is contained in:
Tiago Scholten 2026-07-27 16:52:25 +02:00
parent b925d1c2e1
commit 68e65b2ea4

View File

@ -1,7 +1,6 @@
from pydantic import Field
from .person import PersonModel
from .enums import OnlineAlmanacField
from .submodels import Address, LoginInfo
class MemberModel(PersonModel):
@ -15,8 +14,6 @@ class MemberModel(PersonModel):
receive_company_mail: bool = True
receive_spam_mail: bool = True
in_physical_almanac: bool = False
in_online_almanac: bool = True
online_almanac_fields: list[OnlineAlmanacField] = Field(default_factory=list)
# IT stuff
shell: str = "/bin/bash" # TODO: support other shells?
mail_token: str | None = None