mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 18:47:15 -07:00
Merge branch 'dev' into master
This commit is contained in:
commit
f817953ba3
209 changed files with 7250 additions and 993 deletions
6
Ombi.Services/Interfaces/IEmbyNotificationEngine.cs
Normal file
6
Ombi.Services/Interfaces/IEmbyNotificationEngine.cs
Normal file
|
@ -0,0 +1,6 @@
|
|||
namespace Ombi.Services.Interfaces
|
||||
{
|
||||
public interface IEmbyNotificationEngine : INotificationEngine
|
||||
{
|
||||
}
|
||||
}
|
12
Ombi.Services/Interfaces/IMassEmail.cs
Normal file
12
Ombi.Services/Interfaces/IMassEmail.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
using Quartz;
|
||||
|
||||
namespace Ombi.Services.Jobs
|
||||
{
|
||||
public interface IMassEmail
|
||||
{
|
||||
void Execute(IJobExecutionContext context);
|
||||
void MassEmailAdminTest(string html, string subject);
|
||||
void SendMassEmail(string html, string subject);
|
||||
|
||||
}
|
||||
}
|
|
@ -34,7 +34,7 @@ namespace Ombi.Services.Interfaces
|
|||
{
|
||||
public interface INotificationEngine
|
||||
{
|
||||
Task NotifyUsers(IEnumerable<RequestedModel> modelChanged, string apiKey, NotificationType type);
|
||||
Task NotifyUsers(RequestedModel modelChanged, string apiKey, NotificationType type);
|
||||
Task NotifyUsers(IEnumerable<RequestedModel> modelChanged, NotificationType type);
|
||||
Task NotifyUsers(RequestedModel modelChanged, NotificationType type);
|
||||
}
|
||||
}
|
6
Ombi.Services/Interfaces/IPlexNotificationEngine.cs
Normal file
6
Ombi.Services/Interfaces/IPlexNotificationEngine.cs
Normal file
|
@ -0,0 +1,6 @@
|
|||
namespace Ombi.Services.Interfaces
|
||||
{
|
||||
public interface IPlexNotificationEngine : INotificationEngine
|
||||
{
|
||||
}
|
||||
}
|
|
@ -5,7 +5,7 @@ namespace Ombi.Services.Jobs
|
|||
public interface IRecentlyAdded
|
||||
{
|
||||
void Execute(IJobExecutionContext context);
|
||||
void Test();
|
||||
void Start();
|
||||
void RecentlyAddedAdminTest();
|
||||
void StartNewsLetter();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue