Merge pull request #963 from mattermost/plt-538

PLT-538 Add missing -d to webhook doc.
Этот коммит содержится в:
Joram Wilander
2015-10-07 11:51:29 -04:00
родитель 7d2ff7ce78 3b5228cc6f
Коммит 6a9acafe8a

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

@@ -56,7 +56,7 @@ payload={"channel": "off-topic", "text": "Hello, this is some text."}
Combining everything above, here is an example message made using a curl command:
```
curl -i -X POST 'payload={"channel": "off-topic", "text": "Hello, this is some text."}' http://yourmattermost.com/hooks/xxxxxxxxxxxxxxxxxxxxxxxxxx
curl -i -X POST -d 'payload={"channel": "off-topic", "text": "Hello, this is some text."}' http://yourmattermost.com/hooks/xxxxxxxxxxxxxxxxxxxxxxxxxx
```
A post with that text will be made to the Off-Topic channel.