dbsync
This commit is contained in:
parent
8bc1dd22f1
commit
bc6bb44d6d
1 changed files with 1 additions and 2 deletions
|
|
@ -475,7 +475,7 @@ class UserConnection(PowerOnModel):
|
|||
description="OAuth scopes granted for this connection",
|
||||
json_schema_extra={"frontend_type": "list", "frontend_readonly": True, "frontend_required": False, "label": "Gewährte Berechtigungen"},
|
||||
)
|
||||
knowledgeIngestionEnabled: bool = Field(
|
||||
knowledgeIngestionEnabled: Optional[bool] = Field(
|
||||
default=False,
|
||||
description="Whether the user has consented to knowledge ingestion for this connection",
|
||||
json_schema_extra={"frontend_type": "boolean", "frontend_readonly": False, "frontend_required": False, "label": "Wissensdatenbank aktiv"},
|
||||
|
|
@ -747,4 +747,3 @@ class UserVoicePreferences(PowerOnModel):
|
|||
def _validateTtsVoiceMap(cls, value: Any) -> Optional[Dict[str, str]]:
|
||||
return normalizeTtsVoiceMap(value)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue