From ddcbe383ab7e92e258ee9d622bcc4b5f399a600b Mon Sep 17 00:00:00 2001 From: Tobias Jungel Date: Sun, 9 Nov 2025 12:07:44 +0100 Subject: [PATCH] docs: Rename 'mail_alias' to 'mail-alias' in example config (#1346) The example included an invalid character `_` for the attribute `name` This resulted in: ``` Cannot create attribute with invalid name. Valid characters: a-z, A-Z, 0-9, and dash (-). Invalid chars found: _ ``` This fixes the example by using a `-`. --- example_configs/bootstrap/bootstrap.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example_configs/bootstrap/bootstrap.md b/example_configs/bootstrap/bootstrap.md index 74fa724..8ee9eed 100644 --- a/example_configs/bootstrap/bootstrap.md +++ b/example_configs/bootstrap/bootstrap.md @@ -130,7 +130,7 @@ Fields description: "isVisible": true }, { - "name": "mail_alias", + "name": "mail-alias", "attributeType": "STRING", "isEditable": false, "isList": true, @@ -291,4 +291,4 @@ spec: items: - key: group-configs.json path: group-configs.json -``` \ No newline at end of file +```