mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
26 lines
586 B
C#
26 lines
586 B
C#
using System;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.Instrumentation
|
|
{
|
|
public interface ILogRepository : IBasicRepository<Log>
|
|
{
|
|
void Trim();
|
|
}
|
|
|
|
public class LogRepository : BasicRepository<Log>, ILogRepository
|
|
{
|
|
public LogRepository(IDatabase database)
|
|
: base(database)
|
|
{
|
|
}
|
|
|
|
public void Trim()
|
|
{
|
|
var oldIds = Query.Where(c => c.Time < DateTime.Now.AddDays(-30).Date).Select(c => c.Id);
|
|
DeleteMany(oldIds);
|
|
}
|
|
}
|
|
} |