added mealie importer

This commit is contained in:
vabene1111
2021-02-08 21:19:46 +01:00
parent 0f251bee9b
commit 5d1d6d4248
6 changed files with 71 additions and 4 deletions

View File

@ -135,8 +135,9 @@ class ImportExportBase(forms.Form):
DEFAULT = 'DEFAULT'
PAPRIKA = 'PAPRIKA'
NEXTCLOUD = 'NEXTCLOUD'
MEALIE = 'MEALIE'
type = forms.ChoiceField(choices=((DEFAULT, _('Default')), (PAPRIKA, _('Paprika')), (NEXTCLOUD, _('Nextcloud Cookbook')),))
type = forms.ChoiceField(choices=((DEFAULT, _('Default')), (PAPRIKA, _('Paprika')), (NEXTCLOUD, _('Nextcloud Cookbook')), (MEALIE, _('Mealie')),))
class ImportForm(ImportExportBase):