This commit is contained in:
2019-01-17 18:55:47 +00:00
parent 3d7aeed504
commit 0959c2bbfe
2 changed files with 4 additions and 5 deletions

View File

@@ -16,8 +16,7 @@ SERVER
- DO ALL THE THINGS!!!! - all the way down to DOCS MANUAL below which isn't urgent and go back to client stuff - DO ALL THE THINGS!!!! - all the way down to DOCS MANUAL below which isn't urgent and go back to client stuff
- USER object add the custom fields code as in Widget
- JWT issues?? - JWT issues??
- potentially lots of issues, look into it as using them kind of mindlessly right now. - potentially lots of issues, look into it as using them kind of mindlessly right now.
It could be simply that people are attempting to do other things I am not but to be safe read the criticism and see if any of it applies: It could be simply that people are attempting to do other things I am not but to be safe read the criticism and see if any of it applies:

View File

@@ -60,12 +60,12 @@ namespace AyaNova.Biz
l.Add(new FormField("WidgetCustom16", false, true, true)); l.Add(new FormField("WidgetCustom16", false, true, true));
break; break;
case USER_FORM_KEY: case USER_FORM_KEY:
l.Add(new FormField("Name", true, false));//is not shared localized text key and not hideable as it is in the validation rules for widget l.Add(new FormField("Name", true, false));//is not shared localized text key and not hideable as it is in the validation rules for widget
l.Add(new FormField("EmployeeNumber")); l.Add(new FormField("EmployeeNumber"));
l.Add(new FormField("Roles", false, false)); l.Add(new FormField("Roles", false, false));
l.Add(new FormField("UserNotes","UserNotes")); l.Add(new FormField("UserNotes", "UserNotes"));
l.Add(new FormField("UserType",false,false)); l.Add(new FormField("UserType", false, false));
l.Add(new FormField("Active", true, false)); l.Add(new FormField("Active", true, false));
l.Add(new FormField("Tags", true, false)); l.Add(new FormField("Tags", true, false));
l.Add(new FormField("UserCustom1", false, true, true)); l.Add(new FormField("UserCustom1", false, true, true));