Added 'text/x-markdown' as an accepted MIME type for agenda and minutes uploads.

- Legacy-Id: 18310
This commit is contained in:
Henrik Levkowetz 2020-07-29 18:34:53 +00:00
parent 0ac92d3ae4
commit 5f8a1d4b6c

View file

@ -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', ],
}