diff options
Diffstat (limited to 'config_schema.json')
-rw-r--r-- | config_schema.json | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/config_schema.json b/config_schema.json index 434bde5..48454a5 100644 --- a/config_schema.json +++ b/config_schema.json @@ -39,7 +39,8 @@ "required": [":api_id", ":api_hash"], "properties": { ":api_id": { - "$ref": "#/definitions/non-empty-string" + "type": "string", + "pattern": "^[0-9]+$" }, ":api_hash": { "$ref": "#/definitions/non-empty-string" @@ -52,6 +53,9 @@ }, ":use_chat_info_database": { "type": "boolean" + }, + ":use_secret_chats": { + "type": "boolean" } } } |