Added .txt, text/plain, to the permitted types for bluesheet upload. Fixes issue #2437.

- Legacy-Id: 14554
This commit is contained in:
Henrik Levkowetz 2018-01-23 18:34:27 +00:00
parent ffda183e79
commit 4871c9af7b

View file

@ -739,7 +739,7 @@ MEETING_VALID_MINUTES_MIME_TYPES = ['text/plain', 'text/html', 'application/pdf'
MEETING_VALID_SLIDES_EXTENSIONS = ('.doc','.docx','.pdf','.ppt','.pptx','.txt') # Note the removal of .zip
#
MEETING_VALID_BLUESHEET_EXTENSIONS = ['.pdf', '.txt', ]
MEETING_VALID_BLUESHEET_MIME_TYPES = ['application/pdf', ]
MEETING_VALID_BLUESHEET_MIME_TYPES = ['application/pdf', 'text/plain', ]
INTERNET_DRAFT_DAYS_TO_EXPIRE = 185