mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
disable model events for log repository
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user