From d3cb9bea90cd9dcb676ba4dd6354d6a8f48f3ada Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Thu, 16 Jan 2020 23:05:50 +0000 Subject: [PATCH] --- devdocs/todo.txt | 2 -- server/AyaNova/biz/ObjectFields.cs | 3 ++- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/devdocs/todo.txt b/devdocs/todo.txt index 0b0e084b..3e554fb5 100644 --- a/devdocs/todo.txt +++ b/devdocs/todo.txt @@ -26,8 +26,6 @@ TODO: Make a joined table list for development - Modify Widget, add UserId to it (maybe prepared by like a quote) - Modify all the widget related code to work with this and also populate it - Going to need to modify a lot of shit for this at the client too but it's necessary to be on the right path now - - - Widget list with User and their email CLIENT CUSTOM FIELDS CHANGE diff --git a/server/AyaNova/biz/ObjectFields.cs b/server/AyaNova/biz/ObjectFields.cs index cfb23fa4..7fc62d0a 100644 --- a/server/AyaNova/biz/ObjectFields.cs +++ b/server/AyaNova/biz/ObjectFields.cs @@ -215,11 +215,12 @@ namespace AyaNova.Biz l.Add(new ObjectField { Key = "UserCustom15", PropertyName = "UserCustom15", Custom = true }); l.Add(new ObjectField { Key = "UserCustom16", PropertyName = "UserCustom16", Custom = true }); break; + #endregion case USER_EMAIL_ADDRESS_LIST_KEY: #region USER_EMAIL_ADDRESS_LIST_KEY l.Add(new ObjectField { Key = "df", AyObjectType = (int)AyaType.User }); l.Add(new ObjectField { Key = "Name", PropertyName = "Name", SharedLTKey = true, DataType = (int)AyaDataType.Text, Hideable = false }); - l.Add(new ObjectField { Key = "UserEmailAddress", PropertyName = "Emailaddress", DataType = (int)AyaDataType.EmailAddress, SqlColumn="emailaddress" }); + l.Add(new ObjectField { Key = "UserEmailAddress", PropertyName = "Emailaddress", DataType = (int)AyaDataType.EmailAddress, SqlColumn = "emailaddress" }); break; #endregion