Add matrix.secret_file config option

This commit is contained in:
Kai A. Hiller
2025-07-29 18:10:22 +02:00
parent 8b51bf8379
commit 357420a56f
8 changed files with 148 additions and 40 deletions

View File

@@ -1673,9 +1673,6 @@
"MatrixConfig": {
"description": "Configuration related to the Matrix homeserver",
"type": "object",
"required": [
"secret"
],
"properties": {
"kind": {
"description": "The kind of homeserver it is.",
@@ -1691,15 +1688,17 @@
"default": "localhost:8008",
"type": "string"
},
"secret": {
"description": "Shared secret to use for calls to the admin API",
"type": "string"
},
"endpoint": {
"description": "The base URL of the homeserver's client API",
"default": "http://localhost:8008/",
"type": "string",
"format": "uri"
},
"secret_file": {
"type": "string"
},
"secret": {
"type": "string"
}
}
},