added backend for myrecipebox migration

This commit is contained in:
Michael Genson
2024-03-21 16:11:06 +00:00
parent 95b6d901bf
commit 4e38625bde
5 changed files with 147 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ from mealie.services.migrations import (
ChowdownMigrator,
CopyMeThatMigrator,
MealieAlphaMigrator,
MyRecipeBoxMigrator,
NextcloudMigrator,
PaprikaMigrator,
PlanToEatMigrator,
@@ -55,6 +56,7 @@ class GroupMigrationController(BaseUserController):
SupportedMigrations.paprika: PaprikaMigrator,
SupportedMigrations.tandoor: TandoorMigrator,
SupportedMigrations.plantoeat: PlanToEatMigrator,
SupportedMigrations.myrecipebox: MyRecipeBoxMigrator,
}
constructor = table.get(migration_type, None)