(20250123) Made a common API to disable all integrations.

This commit is contained in:
2025-01-23 12:29:03 +05:30
parent 816789fce5
commit fe48b79c09
20 changed files with 663 additions and 36 deletions
+12
View File
@@ -167,6 +167,18 @@ class CoreAuthTokenModel(BaseModel):
frozen = False
)
clientDisplayName: str | None = Field(
description = "How the user has registered himself with the third-party client.",
frozen = False,
default = None
)
clientDisplayPicture: str | None = Field(
description = "The URL of the display picture that the user has set up with the third-party client.",
frozen = False,
default = None
)
status: Literal["pending", "active", "disabled"] = Field(
description = "to indicate the status of this account",
frozen = False,