This commit is contained in:
2020-05-02 21:28:53 +00:00
parent 5479bebc50
commit 83e5b27335

View File

@@ -220,7 +220,7 @@ namespace AyaNova.PlugIn.V8
//make an event log entry to preserve the original v7 history such as it is
public async static Task EventLog(int RavenType, long RavenId, long RavenCreatorId, long RavenModifierId, string sCreated, string sModified)
public async static Task EventLog(AyaType RavenType, long RavenId, long RavenCreatorId, long RavenModifierId, string sCreated, string sModified)
{
DateTime Created = DateTime.UtcNow;
if (!string.IsNullOrWhiteSpace(sCreated))
@@ -231,7 +231,7 @@ namespace AyaNova.PlugIn.V8
Modified = DateTime.Parse(sModified).ToUniversalTime();
dynamic d = new JObject();
d.ayType = RavenType;
d.ayType = (int)RavenType;
d.ayId = RavenId;
d.creator = RavenCreatorId;
d.modifier = RavenModifierId;