mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-30 19:40:05 -07:00
stuffffffffff including searchbar and new navbar !wip
This commit is contained in:
parent
c0a4b20152
commit
33cefe1a62
50 changed files with 397 additions and 196 deletions
|
@ -53,6 +53,7 @@ using Ombi.Updater;
|
|||
using PlexContentCacher = Ombi.Schedule.Jobs.Plex;
|
||||
using Ombi.Api.Telegram;
|
||||
using Ombi.Core.Authentication;
|
||||
using Ombi.Core.Engine.V2;
|
||||
using Ombi.Core.Processor;
|
||||
using Ombi.Schedule.Jobs.Lidarr;
|
||||
using Ombi.Schedule.Jobs.Plex.Interfaces;
|
||||
|
@ -68,6 +69,7 @@ namespace Ombi.DependencyInjection
|
|||
public static void RegisterApplicationDependencies(this IServiceCollection services)
|
||||
{
|
||||
services.RegisterEngines();
|
||||
services.RegisterEnginesV2();
|
||||
services.RegisterApi();
|
||||
services.RegisterServices();
|
||||
services.RegisterStore();
|
||||
|
@ -93,6 +95,11 @@ namespace Ombi.DependencyInjection
|
|||
services.AddTransient<IPlexOAuthManager, PlexOAuthManager>();
|
||||
services.AddTransient<IVoteEngine, VoteEngine>();
|
||||
}
|
||||
|
||||
public static void RegisterEnginesV2(this IServiceCollection services)
|
||||
{
|
||||
services.AddTransient<IMultiSearchEngine, MultiSearchEngine>();
|
||||
}
|
||||
public static void RegisterHttp(this IServiceCollection services)
|
||||
{
|
||||
services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue