Fixes #878 - Added remark for Mattermost and RocketChat support.

This commit is contained in:
Thorsten Eckel 2020-12-01 12:12:54 +01:00
parent ad66cd9c1f
commit 09688f03e1
2 changed files with 3 additions and 2 deletions

View file

@ -83,7 +83,8 @@ App.Config.set(
{ {
name: 'Slack' name: 'Slack'
target: '#system/integration/slack' target: '#system/integration/slack'
description: 'A team communication tool for the 21st century.' description: 'A team communication tool for the 21st century. Compatible with tools like %s.'
descriptionSubstitute: 'Mattermost, RocketChat'
controller: Index controller: Index
state: State state: State
} }

View file

@ -21,7 +21,7 @@
<% end %> <% end %>
</td> </td>
<td><a href="<%- integration.target %>"><%= integration.name %></a></td> <td><a href="<%- integration.target %>"><%= integration.name %></a></td>
<td><%- @T(integration.description) %></td> <td><%- @T(integration.description, integration.descriptionSubstitute) %>
</tr> </tr>
<% end %> <% end %>
</tbody> </tbody>