From de95d115133c479479bf5634d8dd5ff55a2594c0 Mon Sep 17 00:00:00 2001 From: pavel jurka Date: Fri, 26 Jul 2024 19:37:02 +0200 Subject: [PATCH] feat: [#1122] - visibility enum update by the convention --- dictionary.json | 12 ++++++++++++ objects/ldap_person.json | 3 +++ 2 files changed, 15 insertions(+) diff --git a/dictionary.json b/dictionary.json index ff46a47bb..c40c30d22 100644 --- a/dictionary.json +++ b/dictionary.json @@ -4857,8 +4857,17 @@ "visibility": { "caption": "Visibility", "description": "Specifies the group join policy and group content visibility for groups. Possible values are: Private, Public, or HiddenMembership.", + "type": "string_t" + }, + "visibility_id": { + "caption": "Visibility ID", + "description": "The identifier of the normalized visibility id.", "type": "integer_t", + "siblings": "visibility", "enum": { + "0": { + "caption": "Unknown" + }, "1": { "caption": "Private", "description": "The group is private." @@ -4870,6 +4879,9 @@ "3": { "caption": "HiddenMembership", "description": "The group is hidden." + }, + "99": { + "caption": "Other" } } }, diff --git a/objects/ldap_person.json b/objects/ldap_person.json index a53129645..ad7f24929 100644 --- a/objects/ldap_person.json +++ b/objects/ldap_person.json @@ -160,6 +160,9 @@ }, "visibility": { "requirement": "optional" + }, + "visibility_id": { + "requirement": "optional" } } } \ No newline at end of file