mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
27 lines
727 B
JSON
27 lines
727 B
JSON
{
|
|
"attachments": [{
|
|
"pretext": "This is the attachment pretext.",
|
|
"text": "This is the attachment text.",
|
|
"actions": [{
|
|
"name": "Select an option...",
|
|
"integration": {
|
|
"url": "http://localhost:3000/message_menus",
|
|
"context": {
|
|
"action": "do_something"
|
|
}
|
|
},
|
|
"type": "select",
|
|
"options": [{
|
|
"text": "Option 1",
|
|
"value": "option1"
|
|
}, {
|
|
"text": "Option 2",
|
|
"value": "option2"
|
|
}, {
|
|
"text": "Option 3",
|
|
"value": "option3"
|
|
}]
|
|
}]
|
|
}]
|
|
}
|