make model change events opt-in per repository

This commit is contained in:
kay.one 2013-05-21 22:31:29 -07:00
commit bd4856dad8
2 changed files with 9 additions and 7 deletions

View file

@ -23,10 +23,5 @@ namespace NzbDrone.Core.Instrumentation
var oldIds = Query.Where(c => c.Time < DateTime.Now.AddDays(-30).Date).Select(c => c.Id);
DeleteMany(oldIds);
}
protected override void PublishModelEvent(Log model, Datastore.Events.RepositoryAction action)
{
//Don't publish log added events.
}
}
}