From ef58ff93c6840f4ef1bb48548d9900914d8451e4 Mon Sep 17 00:00:00 2001 From: Marcus Barnes Date: Tue, 13 Jun 2017 10:00:30 -0400 Subject: [PATCH] ISLANDORA-2001 Adds JSON-LD MIME type to islandora_mime_mapping function. --- includes/mimetype.utils.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/mimetype.utils.inc b/includes/mimetype.utils.inc index c3a2ec4a..4dfb5b69 100644 --- a/includes/mimetype.utils.inc +++ b/includes/mimetype.utils.inc @@ -268,5 +268,7 @@ function islandora_mime_mapping() { // Web Archives: "warc" => "application/warc", "json" => "application/json", + // JSON-LD + "jsonld" => "application/ld+json", ); }