(20250123) Made a common API to disable all integrations.
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user