Skip to content

Commit

Permalink
fix: Allow all mime types in API that are returned by Ingest (DEV-3163)…
Browse files Browse the repository at this point in the history
… (#2994)
  • Loading branch information
BalduinLandolt authored Jan 16, 2024
1 parent f0312dc commit 1ea69a4
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion webapi/src/main/resources/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,16 @@ app {
"application/vnd.ms-powerpoint",
"application/vnd.openxmlformats-officedocument.presentationml.presentation",
]
text-mime-types = ["application/xml", "text/xml", "text/csv", "text/plain"]
text-mime-types = [
"application/xml",
"application/odd+xml",
"application/rng+xml",
"application/xsd+xml",
"application/xslt+xml",
"text/xml",
"text/csv",
"text/plain"
]
video-mime-types = ["video/mp4"]
audio-mime-types = ["audio/mpeg", "audio/wav", "audio/x-wav", "audio/vnd.wave"]
archive-mime-types = [
Expand Down

0 comments on commit 1ea69a4

Please sign in to comment.