include SiteId in SyncEvent
This commit is contained in:
@ -8,6 +8,10 @@ namespace Oqtane.Infrastructure
|
||||
{
|
||||
event EventHandler<SyncEvent> EntityChanged;
|
||||
List<SyncEvent> GetSyncEvents(int tenantId, DateTime lastSyncDate);
|
||||
void AddSyncEvent(Alias alias, string entityName, int entityId, string action);
|
||||
void AddSyncEvent(int tenantId, int siteId, string entityName, int entityId, string action);
|
||||
|
||||
[Obsolete("AddSyncEvent(int tenantId, string entityName, int entityId, string action) is deprecated. Use AddSyncEvent(Alias alias, string entityName, int entityId, string action) instead.", false)]
|
||||
void AddSyncEvent(int tenantId, string entityName, int entityId, string action);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user