Added token to config

This commit is contained in:
Jonas Linter
2025-10-15 14:27:30 +02:00
parent f58332221b
commit 76e3b53a4e

View File

@@ -153,6 +153,7 @@ config_schema = Schema(
Required(CONF_SERVER): server_info,
Required(CONF_LOGGING): logger_schema,
Optional("email"): email_schema, # Email is optional
Optional("api_tokens", default=[]): [str], # API tokens for bearer auth
},
extra=PREVENT_EXTRA,
)