fetch rooms

This commit is contained in:
grimhilt
2023-03-20 14:43:07 +01:00
parent ace2063309
commit 47b8c54122
12 changed files with 160 additions and 91 deletions

View File

@@ -0,0 +1,14 @@
{
"type": "object",
"properties": {
"email": { "type": "string", "format": "email" },
"pwd": { "type": "string" },
"xoauth": { "type": "string" },
"xoauth2": { "type": "string" },
"host": { "type": "string", "format": "hostname" },
"port": { "type": "number", "maximum": 65535 },
"tls": { "type": "boolean" }
},
"required": ["email", "host", "port", "tls"],
"additionalProperties": false
}