This commit is contained in:
@@ -193,6 +193,21 @@ 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, DateTime Created, DateTime Modified)
|
||||
{
|
||||
dynamic d = new JObject();
|
||||
d.ayType = RavenType;
|
||||
d.ayId = RavenId;
|
||||
d.creator = RavenCreatorId;
|
||||
d.modifier = RavenModifierId;
|
||||
d.created = Created.ToUniversalTime();
|
||||
d.modified = Modified.ToUniversalTime();
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user