This commit is contained in:
2018-08-28 00:06:00 +00:00
parent b60dc75c8e
commit 5dc634d5c1
2 changed files with 8 additions and 1 deletions

View File

@@ -23,6 +23,8 @@ namespace AyaNova.Biz
ServerStateChange=9,
SeedDatabase=10
//NEW ITEMS REQUIRE LOCALE KEYS AND UPDATE EventLogProcessor code that prefetches required keys
}

View File

@@ -60,9 +60,14 @@ namespace AyaNova.Biz
AyaNova.Api.Controllers.LocaleController.LocaleSubsetParam param = new Api.Controllers.LocaleController.LocaleSubsetParam();
param.LocaleId = userLocaleId;
param.Keys.AddRange(new string[] { "CommonCreated", "Delete","Modified","Retrieved" });
//TODO: add all the keys from all the events in AyaEvent
//Attachment, Created instead of AttachmentCreate, or is it attached?
var LT = LocaleBiz.GetSubsetStatic(param);
//Have list of locales
//Have list of locales and list of ops, now make it into a readable text display and return it
return null;