added meal master import

This commit is contained in:
vabene1111
2021-03-28 21:50:52 +02:00
parent f6c491a8e6
commit 4db17874c4
4 changed files with 99 additions and 2 deletions

View File

@ -16,6 +16,7 @@ from cookbook.integration.chowdown import Chowdown
from cookbook.integration.default import Default
from cookbook.integration.domestica import Domestica
from cookbook.integration.mealie import Mealie
from cookbook.integration.mealmaster import MealMaster
from cookbook.integration.nextcloud_cookbook import NextcloudCookbook
from cookbook.integration.paprika import Paprika
from cookbook.integration.recipesage import RecipeSage
@ -47,6 +48,8 @@ def get_integration(request, export_type):
return RecipeSage(request, export_type)
if export_type == ImportExportBase.REZKONV:
return RezKonv(request, export_type)
if export_type == ImportExportBase.MEALMASTER:
return MealMaster(request, export_type)
@group_required('user')