Enhanced Purge Job to include retention policy for Notifications
This commit is contained in:
@ -8,6 +8,6 @@ namespace Oqtane.Repository
|
||||
IEnumerable<Log> GetLogs(int siteId, string level, string function, int rows);
|
||||
Log GetLog(int logId);
|
||||
void AddLog(Log log);
|
||||
int DeleteLogs(int age);
|
||||
int DeleteLogs(int siteId, int age);
|
||||
}
|
||||
}
|
||||
|
@ -11,5 +11,6 @@ namespace Oqtane.Repository
|
||||
Notification GetNotification(int notificationId);
|
||||
Notification GetNotification(int notificationId, bool tracking);
|
||||
void DeleteNotification(int notificationId);
|
||||
int DeleteNotifications(int siteId, int age);
|
||||
}
|
||||
}
|
||||
|
@ -12,6 +12,6 @@ namespace Oqtane.Repository
|
||||
Visitor GetVisitor(int visitorId);
|
||||
Visitor GetVisitor(int siteId, string IPAddress);
|
||||
void DeleteVisitor(int visitorId);
|
||||
int DeleteVisitors(int age);
|
||||
int DeleteVisitors(int siteId, int age);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user