Add endpoint to log client events

This commit is contained in:
crobibero
2021-04-26 07:02:26 -06:00
parent 5df87b3e0d
commit 1d6224c9c6
9 changed files with 295 additions and 12 deletions

View File

@@ -55,6 +55,7 @@ using MediaBrowser.Common.Updates;
using MediaBrowser.Controller;
using MediaBrowser.Controller.Channels;
using MediaBrowser.Controller.Chapters;
using MediaBrowser.Controller.ClientEvent;
using MediaBrowser.Controller.Collections;
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Devices;
@@ -680,6 +681,8 @@ namespace Emby.Server.Implementations
ServiceCollection.AddScoped<AudioHelper>();
ServiceCollection.AddScoped<DynamicHlsHelper>();
ServiceCollection.AddScoped<IClientEventLogger, ClientEventLogger>();
ServiceCollection.AddSingleton<IDirectoryService, DirectoryService>();
}