Documentation fixes.

This commit is contained in:
Ylian Saint-Hilaire 2022-11-01 13:00:07 -07:00
parent e19caeefe4
commit 275cc04e03
3 changed files with 7 additions and 4 deletions

View File

@ -185,8 +185,9 @@ You can enable the MeshCentral [Zulip](https://zulip.com/) integration with the
```json ```json
{ {
"messaging": { "messaging": {
email: "your-bot@zulip.com", "site": "https://api.zulip.com",
api_key: "your_32_character_api_key" "email": "your-bot@zulip.com",
"api_key": "your_32_character_api_key"
} }
} }
``` ```

View File

@ -1421,6 +1421,7 @@
"zulip": { "zulip": {
"type": "object", "type": "object",
"properties": { "properties": {
"site": { "type": "string", "format": "uri", "default": "https://api.zulip.com", "description": "URL to the Zulip server"},
"email": { "type": "string", "description": "Bot email address to login as." }, "email": { "type": "string", "description": "Bot email address to login as." },
"api_key": { "type": "string", "description": "Bot api key." } "api_key": { "type": "string", "description": "Bot api key." }
}, },

View File

@ -81,8 +81,9 @@
// For zulip // For zulip
{ {
"messaging": { "messaging": {
email: "your-bot@zulip.com", "site": "https://api.zulip.com",
api_key: "your_32_character_api_key" "email": "your-bot@zulip.com",
"api_key": "your_32_character_api_key"
} }
} }