From 8405c444db55ca2d0ef1fb44cb8a83dab7ad8979 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 16 Mar 2021 23:57:02 +0000 Subject: [PATCH] --- server/AyaNova/Controllers/EnumListController.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/server/AyaNova/Controllers/EnumListController.cs b/server/AyaNova/Controllers/EnumListController.cs index 735e4769..22945c30 100644 --- a/server/AyaNova/Controllers/EnumListController.cs +++ b/server/AyaNova/Controllers/EnumListController.cs @@ -76,7 +76,9 @@ namespace AyaNova.Api.Controllers ret.Add(new KeyValuePair("outsideusertype", "AyaNova user account types for customer / headoffice users")); ret.Add(new KeyValuePair(StringUtil.TrimTypeName(typeof(AuthorizationRoles).ToString()), "AyaNova user account role types")); ret.Add(new KeyValuePair(StringUtil.TrimTypeName(typeof(AyaType).ToString()), "All AyaNova object types")); - ret.Add(new KeyValuePair("Core", "All Core AyaNova business object types")); + ret.Add(new KeyValuePair("coreall", "All Core AyaNova business object types")); + ret.Add(new KeyValuePair("coreview", "All Core AyaNova business object types current user is allowed to view")); + ret.Add(new KeyValuePair("coreedit", "All Core AyaNova business object types current user is allowed to edit")); ret.Add(new KeyValuePair(StringUtil.TrimTypeName(typeof(UiFieldDataType).ToString()), "Types of data used in AyaNova for display and formatting UI purposes")); ret.Add(new KeyValuePair(StringUtil.TrimTypeName(typeof(NotifyEventType).ToString()), "Notification event types")); ret.Add(new KeyValuePair(StringUtil.TrimTypeName(typeof(NotifyDeliveryMethod).ToString()), "Notification delivery methods"));