move notification classes

pull/702/head
Luke Pulverenti 8 years ago
parent b76a1abda5
commit 0d5d91b4c4

@ -115,6 +115,11 @@
<Compile Include="Library\Validators\YearsPostScanTask.cs" />
<Compile Include="Logging\PatternsLogger.cs" />
<Compile Include="News\NewsService.cs" />
<Compile Include="Notifications\CoreNotificationTypes.cs" />
<Compile Include="Notifications\IConfigurableNotificationService.cs" />
<Compile Include="Notifications\InternalNotificationService.cs" />
<Compile Include="Notifications\NotificationConfigurationFactory.cs" />
<Compile Include="Notifications\NotificationManager.cs" />
<Compile Include="Notifications\Notifications.cs" />
<Compile Include="Notifications\WebSocketNotifier.cs" />
<Compile Include="Persistence\CleanDatabaseScheduledTask.cs" />

@ -6,7 +6,7 @@ using System.Collections.Generic;
using System.Linq;
using MediaBrowser.Model.Globalization;
namespace MediaBrowser.Server.Implementations.Notifications
namespace Emby.Server.Implementations.Notifications
{
public class CoreNotificationTypes : INotificationTypeFactory
{

@ -1,4 +1,4 @@
namespace MediaBrowser.Server.Implementations.Notifications
namespace Emby.Server.Implementations.Notifications
{
public interface IConfigurableNotificationService
{

@ -5,7 +5,7 @@ using System.Threading;
using System.Threading.Tasks;
using System;
namespace MediaBrowser.Server.Implementations.Notifications
namespace Emby.Server.Implementations.Notifications
{
public class InternalNotificationService : INotificationService, IConfigurableNotificationService
{

@ -2,7 +2,7 @@
using MediaBrowser.Model.Notifications;
using System.Collections.Generic;
namespace MediaBrowser.Server.Implementations.Notifications
namespace Emby.Server.Implementations.Notifications
{
public class NotificationConfigurationFactory : IConfigurationFactory
{

@ -13,7 +13,7 @@ using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Model.Extensions;
namespace MediaBrowser.Server.Implementations.Notifications
namespace Emby.Server.Implementations.Notifications
{
public class NotificationManager : INotificationManager
{

@ -212,7 +212,6 @@
<Compile Include="Logging\PatternsLogger.cs" />
<Compile Include="MediaEncoder\EncodingManager.cs" />
<Compile Include="News\NewsEntryPoint.cs" />
<Compile Include="Notifications\IConfigurableNotificationService.cs" />
<Compile Include="Persistence\BaseSqliteRepository.cs" />
<Compile Include="Persistence\DataExtensions.cs" />
<Compile Include="Persistence\IDbConnector.cs" />
@ -230,10 +229,6 @@
<Compile Include="TextEncoding\TextEncoding.cs" />
<Compile Include="Threading\PeriodicTimer.cs" />
<Compile Include="TV\SeriesPostScanTask.cs" />
<Compile Include="Notifications\CoreNotificationTypes.cs" />
<Compile Include="Notifications\InternalNotificationService.cs" />
<Compile Include="Notifications\NotificationConfigurationFactory.cs" />
<Compile Include="Notifications\NotificationManager.cs" />
<Compile Include="Persistence\SqliteFileOrganizationRepository.cs" />
<Compile Include="Notifications\SqliteNotificationsRepository.cs" />
<Compile Include="Persistence\TypeMapper.cs" />

@ -107,6 +107,7 @@ using Emby.Server.Implementations.Devices;
using Emby.Server.Implementations.Dto;
using Emby.Server.Implementations.FileOrganization;
using Emby.Server.Implementations.Library;
using Emby.Server.Implementations.Notifications;
using Emby.Server.Implementations.Persistence;
using Emby.Server.Implementations.Playlists;
using Emby.Server.Implementations.TV;

Loading…
Cancel
Save