feat: Implemented Plan to Eat migration (#2635)

Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com>
This commit is contained in:
NullCosmos
2023-10-15 16:01:07 -04:00
committed by GitHub
parent e8b5d8d66f
commit f72fcc3031
51 changed files with 358 additions and 42 deletions

View File

@@ -16,6 +16,7 @@ from mealie.services.migrations import (
MealieAlphaMigrator,
NextcloudMigrator,
PaprikaMigrator,
PlanToEatMigrator,
TandoorMigrator,
)
@@ -52,6 +53,7 @@ class GroupMigrationController(BaseUserController):
SupportedMigrations.nextcloud: NextcloudMigrator,
SupportedMigrations.paprika: PaprikaMigrator,
SupportedMigrations.tandoor: TandoorMigrator,
SupportedMigrations.plantoeat: PlanToEatMigrator,
}
constructor = table.get(migration_type, None)