From f065b4f6ce3b8c526e6717d4720c162e6efea014 Mon Sep 17 00:00:00 2001 From: gyurix Date: Sun, 31 Aug 2025 14:18:20 +0200 Subject: [PATCH] Add required fields and types to matrix template configuration --- matrix/template.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/matrix/template.json b/matrix/template.json index 7f8cb08..1dde126 100644 --- a/matrix/template.json +++ b/matrix/template.json @@ -8,17 +8,21 @@ { "description": "Add synapse/matrix server name (domain)", "key": "DOMAIN", - "value": "" + "value": "", + "required": "true" }, { "description": "Matrix admin username", "key": "ADMIN_USERNAME", - "value": "" + "value": "", + "required": "true" }, { "description": "Matrix admin password", "key": "ADMIN_PASSWORD", - "value": "" + "value": "", + "required": "true", + "type": "password" }, { "description": "Postgres database name",