Skip to content

Commit

Permalink
Merge pull request #10367 from nextcloud/backport/10364/stable27
Browse files Browse the repository at this point in the history
[stable27] feat(capability): Add a capability for messages being markdown
  • Loading branch information
nickvergessen committed Aug 25, 2023
2 parents 18d95de + b757010 commit dbba07f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/capabilities.md
Expand Up @@ -125,3 +125,4 @@
## 17.1
* `remind-me-later` - Support for "Remind me later" for chat messages exists
* `bots-v1` - Support of the first version for Bots and Webhooks is available
* `markdown-messages` - Chat messages support markdown and are rendered automatically
1 change: 1 addition & 0 deletions lib/Capabilities.php
Expand Up @@ -121,6 +121,7 @@ public function getCapabilities(): array {
'typing-privacy',
'remind-me-later',
'bots-v1',
'markdown-messages',
],
'config' => [
'attachments' => [
Expand Down
1 change: 1 addition & 0 deletions tests/php/CapabilitiesTest.php
Expand Up @@ -139,6 +139,7 @@ public function setUp(): void {
'typing-privacy',
'remind-me-later',
'bots-v1',
'markdown-messages',
'message-expiration',
'reactions',
];
Expand Down

0 comments on commit dbba07f

Please sign in to comment.