Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2022-03-24 11:10:56 +01:00
Родитель 7c325c6936
Коммит 4a2f85131f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7076EA9751AACDDA
4 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -91,3 +91,4 @@ title: Capabilities
* `chat-unread` - Whether the API to mark a conversation as unread is available
* `reactions` - Api reactions to chat message
* `rich-object-list-media` - When the API to get the chat messages for shared media is available
* `rich-object-delete` - When the API allows to delete chat messages which are file or rich object shares

Просмотреть файл

@ -208,7 +208,7 @@ See [OCP\RichObjectStrings\Definitions](https://github.com/nextcloud/server/blob
## Deleting a chat message
* Required capability: `delete-messages`
* Required capability: `delete-messages` - `rich-object-delete` indicates if shared objects can be deleted from the chat
* Method: `DELETE`
* Endpoint: `/chat/{token}/{messageId}`

Просмотреть файл

@ -105,6 +105,7 @@ class Capabilities implements IPublicCapability {
'notification-calls',
'conversation-permissions',
'rich-object-list-media',
'rich-object-delete',
],
'config' => [
'attachments' => [

Просмотреть файл

@ -104,6 +104,7 @@ class CapabilitiesTest extends TestCase {
'notification-calls',
'conversation-permissions',
'rich-object-list-media',
'rich-object-delete',
'reactions',
];
}