mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 05:57:20 -04:00
Moved migration routines to their own directory
This commit is contained in:
parent
ccafebca68
commit
55b429e5e8
3 changed files with 4 additions and 4 deletions
|
@ -15,8 +15,8 @@ namespace Jellyfin.Server.Migrations
|
|||
/// </summary>
|
||||
internal static readonly IUpdater[] Migrations =
|
||||
{
|
||||
new DisableTranscodingThrottling(),
|
||||
new DisableZealousLogging()
|
||||
new Routines.DisableTranscodingThrottling(),
|
||||
new Routines.DisableZealousLogging()
|
||||
};
|
||||
|
||||
/// <summary>
|
||||
|
|
|
@ -5,7 +5,7 @@ using MediaBrowser.Model.Configuration;
|
|||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace Jellyfin.Server.Migrations
|
||||
namespace Jellyfin.Server.Migrations.Routines
|
||||
{
|
||||
/// <summary>
|
||||
/// Updater that takes care of bringing configuration up to 10.5.0 standards.
|
|
@ -7,7 +7,7 @@ using Microsoft.Extensions.Logging;
|
|||
using Serilog;
|
||||
using ILogger = Microsoft.Extensions.Logging.ILogger;
|
||||
|
||||
namespace Jellyfin.Server.Migrations
|
||||
namespace Jellyfin.Server.Migrations.Routines
|
||||
{
|
||||
/// <summary>
|
||||
/// Updater that takes care of bringing configuration up to 10.5.0 standards.
|
Loading…
Add table
Add a link
Reference in a new issue