Thomas Decaux
My feedback
2 results found
-
3 votes
An error occurred while saving the comment Thomas Decaux shared this idea ·
-
3 votes
Thomas Decaux supported this idea ·
2 results found
Currently, message actions button is doing a HTTP call to get a JSON response. What about adding the possibility to define button that open an URL in a new tab ?
Using https://developers.mattermost.com/integrate/plugins/interactive-messages/ , we want to display a button that simply open a link:
```
{
"attachments": [
{
"pretext": "This is the attachment pretext.",
"text": "This is the attachment text.",
"actions": [{
"id": "open-link",
"name": "Open Dashboard",
"integration": {
"link": "http://grafana.my-dev.com"
}
}
]
}
]
}
```
ref https://github.com/mattermost/mattermost/issues/30720