using NzbDrone.Core.Notifications; namespace NzbDrone.Api.Notifications { public class NotificationModule : ProviderModuleBase { public NotificationModule(NotificationFactory notificationFactory) : base(notificationFactory, "notification") { } protected override void Validate(NotificationDefinition definition, bool includeWarnings) { if (!definition.OnGrab && !definition.OnDownload) return; base.Validate(definition, includeWarnings); } } }