fix: icon svg support (#177)

This commit is contained in:
simontigers 2023-09-20 15:56:57 +08:00 committed by GitHub
parent 82d4c4f961
commit cd451060e3
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ from api.resource import APIView
prefix = '/file' prefix = '/file'
ALLOWED_EXTENSIONS = { ALLOWED_EXTENSIONS = {
'txt', 'pdf', 'png', 'jpg', 'jpeg', 'gif', 'xls', 'xlsx', 'doc', 'docx', 'ppt', 'pptx', 'csv' 'txt', 'pdf', 'png', 'jpg', 'jpeg', 'gif', 'xls', 'xlsx', 'doc', 'docx', 'ppt', 'pptx', 'csv', 'svg'
} }