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 `-`.
This commit is contained in:
Tobias Jungel
2025-11-09 12:07:44 +01:00
committed by GitHub
parent eee42502f3
commit ddcbe383ab
+2 -2
View File
@@ -130,7 +130,7 @@ Fields description:
"isVisible": true "isVisible": true
}, },
{ {
"name": "mail_alias", "name": "mail-alias",
"attributeType": "STRING", "attributeType": "STRING",
"isEditable": false, "isEditable": false,
"isList": true, "isList": true,
@@ -291,4 +291,4 @@ spec:
items: items:
- key: group-configs.json - key: group-configs.json
path: group-configs.json path: group-configs.json
``` ```