feat: Add new migration for DVO Cook'n (#5085)

Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com>
This commit is contained in:
Dallin Miner
2025-10-09 23:22:51 -06:00
committed by GitHub
parent a95eaf3d2e
commit 71d86489f4
15 changed files with 493 additions and 21 deletions

View File

@@ -11,6 +11,7 @@ from mealie.schema.reports.reports import ReportSummary
from mealie.services.migrations import (
BaseMigrator,
ChowdownMigrator,
CooknMigrator,
CopyMeThatMigrator,
MealieAlphaMigrator,
MyRecipeBoxMigrator,
@@ -59,6 +60,7 @@ class GroupMigrationController(BaseUserController):
SupportedMigrations.plantoeat: PlanToEatMigrator,
SupportedMigrations.myrecipebox: MyRecipeBoxMigrator,
SupportedMigrations.recipekeeper: RecipeKeeperMigrator,
SupportedMigrations.cookn: CooknMigrator,
}
constructor = table.get(migration_type, None)