This commit is contained in:
@@ -220,7 +220,7 @@ namespace AyaNova.PlugIn.V8
|
|||||||
|
|
||||||
|
|
||||||
//make an event log entry to preserve the original v7 history such as it is
|
//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;
|
DateTime Created = DateTime.UtcNow;
|
||||||
if (!string.IsNullOrWhiteSpace(sCreated))
|
if (!string.IsNullOrWhiteSpace(sCreated))
|
||||||
@@ -231,7 +231,7 @@ namespace AyaNova.PlugIn.V8
|
|||||||
Modified = DateTime.Parse(sModified).ToUniversalTime();
|
Modified = DateTime.Parse(sModified).ToUniversalTime();
|
||||||
|
|
||||||
dynamic d = new JObject();
|
dynamic d = new JObject();
|
||||||
d.ayType = RavenType;
|
d.ayType = (int)RavenType;
|
||||||
d.ayId = RavenId;
|
d.ayId = RavenId;
|
||||||
d.creator = RavenCreatorId;
|
d.creator = RavenCreatorId;
|
||||||
d.modifier = RavenModifierId;
|
d.modifier = RavenModifierId;
|
||||||
|
|||||||
Reference in New Issue
Block a user