3
0

test multi line cell

This commit is contained in:
Tit Petric
2018-06-03 14:30:27 +02:00
parent f91e92200e
commit 49c13be560
2 changed files with 17 additions and 2 deletions
+9 -1
View File
@@ -232,7 +232,15 @@ The following event types may be sent with a message event:
| Parameter | Type | Method | Description | Default | Required? |
| --------- | ---- | ------ | ----------- | ------- | --------- |
| query | string | GET | Search string to match against messages | N/A | NO |
| message_type | string | GET | Limit results to message type | N/A<br/>Values:<br/><br/><ul><li>`history`</li><li>`message`</li><li>`attachment`</li><li>`media`</li></ul> | NO |
| message_type | string | GET | Limit results to message type | N/A
Values:
- `history`
- `message`
- `attachment`
- `media`
| NO |
# Members
+8 -1
View File
@@ -14,7 +14,14 @@
| --------- | ---- | ------ | ----------- | ------- | --------- |
{foreach $call.parameters as $method => $params}
{foreach $params as $param}
| {param.name} | {param.type} | {method|toupper} | {param.title} | {if empty($param.default)}N/A{else}{param.default}{/if}{if $param.values}<br/>Values:<br/><br/><ul>{foreach $param.values as $value}<li>`{value}`</li>{/foreach}</ul>{/if} | {if $param.required}YES{else}NO{/if} |
| {param.name} | {param.type} | {method|toupper} | {param.title} | {if empty($param.default)}N/A{else}{param.default}{/if}
{if $param.values}
Values:
{foreach $param.values as $value}- `{value}`
{/foreach}
{/if} | {if $param.required}YES{else}NO{/if} |
{/foreach}
{/foreach}