This commit is contained in:
2021-08-19 18:26:31 +00:00
parent fe4f624b3c
commit 3988e97fa6

View File

@@ -502,10 +502,13 @@ namespace AyaNova.PlugIn.V8
try try
{ {
dynamic d = new JObject(); dynamic d = new JObject();
d.fromId = 1; dynamic dmemo = new JObject();
d.toId = 1; dynamic duserid = new JArray();
d.name = "V8 Migrate - post migrate log and instructions";
d.notes = "Hello, this is an automated memo from the v8 migrate utility.\n\nHelpful information:\n\nChanges in AyaNova 8 for users:\n" dmemo.fromId = 1;
dmemo.toId = 1;
dmemo.name = "V8 Migrate - post migrate log and instructions";
dmemo.notes = "Hello, this is an automated memo from the v8 migrate utility.\n\nHelpful information:\n\nChanges in AyaNova 8 for users:\n"
+ util.ApiBaseUrl + util.ApiBaseUrl
+ "docs/ay-start-changes-from-v7/\n\nTechnical changes in AyaNova 8 for system administrators:\n" + "docs/ay-start-changes-from-v7/\n\nTechnical changes in AyaNova 8 for system administrators:\n"
+ util.ApiBaseUrl + util.ApiBaseUrl
@@ -514,10 +517,13 @@ namespace AyaNova.PlugIn.V8
+ "docs/ay-biz-admin-import-v7/\n\n\nLog:\n######## V8 Migrate log ########\n" + "docs/ay-biz-admin-import-v7/\n\n\nLog:\n######## V8 Migrate log ########\n"
+ progress.AllText + progress.AllText
+ "\n################################\n"; + "\n################################\n";
d.replied = false; dmemo.replied = false;
d.sent = util.DateToV8(DateTime.UtcNow.ToString("o", System.Globalization.CultureInfo.InvariantCulture)); dmemo.sent = util.DateToV8(DateTime.UtcNow.ToString("o", System.Globalization.CultureInfo.InvariantCulture));
d.viewed = false; dmemo.viewed = false;
d.wiki = null;
duserid.Add(-7);//special code to server to treat as an import single
d.users = duserid;
d.memo = dmemo;
await util.PostAsync("memo", d.ToString()); await util.PostAsync("memo", d.ToString());
} }