Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/vaultwarden/models/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class UserProfile(PermissiveBaseModel):
Id: UUID
Key: str
MasterPasswordHint: str | None = None
Name: str
Name: str | None
Object: str | None
Organizations: list[ProfileOrganization]
Premium: bool
Expand All @@ -85,6 +85,7 @@ class UserProfile(PermissiveBaseModel):
SecurityStamp: str
TwoFactorEnabled: bool
status: VaultwardenUserStatus = Field(
default=VaultwardenUserStatus.Enabled, # original Bitwarden doesn't support disabling users
validation_alias=AliasChoices("_status", "_Status")
)

Expand Down