From ffda183e7966854097e5cb7e1dad06e4333fb0aa Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Tue, 23 Jan 2018 18:34:00 +0000 Subject: [PATCH] Added .txt, text/plain, to the permitted types for bluesheet upload. Fixes issue #2437. - Legacy-Id: 14553 --- ietf/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/settings.py b/ietf/settings.py index 28e8482ee..cdeda544d 100644 --- a/ietf/settings.py +++ b/ietf/settings.py @@ -738,7 +738,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', ] +MEETING_VALID_BLUESHEET_EXTENSIONS = ['.pdf', '.txt', ] MEETING_VALID_BLUESHEET_MIME_TYPES = ['application/pdf', ] INTERNET_DRAFT_DAYS_TO_EXPIRE = 185