disable model events for log repository

This commit is contained in:
kay.one 2013-05-20 21:10:04 -07:00
commit 6936f042f5
3 changed files with 18 additions and 8 deletions

View file

@ -106,7 +106,7 @@ namespace NzbDrone.Core.Datastore
}
DataMapper.Insert(model);
_messageAggregator.PublishEvent(new ModelEvent<TModel>(model, ModelEvent<TModel>.RepositoryAction.Created));
PublishModelEvent(model, RepositoryAction.Created);
return model;
}
@ -193,5 +193,11 @@ namespace NzbDrone.Core.Datastore
.Execute();
}
protected virtual void PublishModelEvent(TModel model, RepositoryAction action)
{
_messageAggregator.PublishEvent(new ModelEvent<TModel>(model, action));
}
}
}