Skip to content

Commit

Permalink
update additional property fields for kitem apps
Browse files Browse the repository at this point in the history
  • Loading branch information
MBueschelberger committed Mar 5, 2024
1 parent dd51946 commit 9f1b4f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dsms/knowledge/properties/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
class AdditionalProperties(BaseModel):
"""Additional properties of"""

triggeredUponUpload: bool = Field(
triggerUponUpload: bool = Field(
False,
description="Whether the app should be triggered when a file is uploaded",
)
triggeredUponUploadFileExtensions: Optional[list[str]] = Field(
triggerUponUploadFileExtensions: Optional[list[str]] = Field(
None,
description="File extensions for which the upload shall be triggered.",
)
Expand Down

0 comments on commit 9f1b4f9

Please sign in to comment.