From 5f8a1d4b6c4739b1e413d3bfa85615f0d07ae82a Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Wed, 29 Jul 2020 18:34:53 +0000 Subject: [PATCH] Added 'text/x-markdown' as an accepted MIME type for agenda and minutes uploads. - Legacy-Id: 18310 --- ietf/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/settings.py b/ietf/settings.py index e096f7399..b02f71b0f 100644 --- a/ietf/settings.py +++ b/ietf/settings.py @@ -906,8 +906,8 @@ MEETING_VALID_UPLOAD_EXTENSIONS = { } MEETING_VALID_UPLOAD_MIME_TYPES = { - 'agenda': ['text/plain', 'text/html', 'text/markdown', ], - 'minutes': ['text/plain', 'text/html', 'application/pdf', 'text/markdown', ], + 'agenda': ['text/plain', 'text/html', 'text/markdown', 'text/x-markdown', ], + 'minutes': ['text/plain', 'text/html', 'application/pdf', 'text/markdown', 'text/x-markdown', ], 'slides': [], 'bluesheets': ['application/pdf', 'text/plain', ], }