feat: allow grouping shows into collections (#13236)

* feat: allow grouping shows into collections

* add pre-startup routine to rename EnableGroupingIntoCollections

* Update Jellyfin.Server/Migrations/PreStartupRoutines/RenameEnableGroupingIntoCollections.cs
This commit is contained in:
Johannes Heuel
2025-03-28 13:54:12 +01:00
committed by GitHub
parent 9657708b38
commit 2c499d1e86
5 changed files with 74 additions and 10 deletions

View File

@@ -204,7 +204,9 @@ public class ServerConfiguration : BaseApplicationConfiguration
public bool EnableFolderView { get; set; } = false;
public bool EnableGroupingIntoCollections { get; set; } = false;
public bool EnableGroupingMoviesIntoCollections { get; set; } = false;
public bool EnableGroupingShowsIntoCollections { get; set; } = false;
public bool DisplaySpecialsWithinSeasons { get; set; } = true;