wip rezeptsuitede importer

This commit is contained in:
vabene1111
2023-01-29 22:06:08 +01:00
parent 9ad9fe275d
commit f47470a9ad
6 changed files with 72 additions and 11 deletions

View File

@@ -31,6 +31,7 @@ from cookbook.integration.plantoeat import Plantoeat
from cookbook.integration.recettetek import RecetteTek
from cookbook.integration.recipekeeper import RecipeKeeper
from cookbook.integration.recipesage import RecipeSage
from cookbook.integration.rezeptsuitede import Rezeptsuitede
from cookbook.integration.rezkonv import RezKonv
from cookbook.integration.saffron import Saffron
from cookbook.models import ExportLog, ImportLog, Recipe, UserPreference
@@ -80,6 +81,8 @@ def get_integration(request, export_type):
return MelaRecipes(request, export_type)
if export_type == ImportExportBase.COOKMATE:
return Cookmate(request, export_type)
if export_type == ImportExportBase.REZEPTSUITEDE:
return Rezeptsuitede(request, export_type)
@group_required('user')