diff options
author | 2024-10-04 19:22:52 +0200 | |
---|---|---|
committer | 2024-10-04 19:22:52 +0200 | |
commit | 8bd8c6fb455d90c1ad0fe84430b7ea59bd1075f3 (patch) | |
tree | 60568db8f016e82ebad8acaa6b68938b31740331 /docs/api/swagger.yaml | |
parent | [performance] remove the pragma optimize analysis limit on connection close (... (diff) | |
download | gotosocial-8bd8c6fb455d90c1ad0fe84430b7ea59bd1075f3.tar.xz |
[bugfix] Include own account in conversation when no other accounts involved (#3387)
Diffstat (limited to 'docs/api/swagger.yaml')
-rw-r--r-- | docs/api/swagger.yaml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/api/swagger.yaml b/docs/api/swagger.yaml index 54d318111..c0dc6de89 100644 --- a/docs/api/swagger.yaml +++ b/docs/api/swagger.yaml @@ -950,7 +950,12 @@ definitions: with "direct message" visibility. properties: accounts: - description: Participants in the conversation. + description: |- + Participants in the conversation. + + If this is a conversation between no accounts (ie., a self-directed DM), + this will include only the requesting account itself. Otherwise, it will + include every other account in the conversation *except* the requester. items: $ref: '#/definitions/account' type: array |