From 04e55ad98c6200d10c72921ece486bc93489af95 Mon Sep 17 00:00:00 2001 From: Daniel Lamb Date: Thu, 30 Jul 2015 00:33:35 -0300 Subject: [PATCH] Enabling delete by fedora uri service in install. --- islandora/islandora.module | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/islandora/islandora.module b/islandora/islandora.module index 990f3fe9..cbb25fb7 100644 --- a/islandora/islandora.module +++ b/islandora/islandora.module @@ -98,6 +98,13 @@ function islandora_default_services_endpoint() { ), ); $endpoint->resources = array( + 'delete_by_fedora_uri' => array( + 'operations' => array( + 'create' => array( + 'enabled' => '1', + ), + ), + ), 'node' => array( 'operations' => array( 'retrieve' => array( @@ -168,3 +175,14 @@ function islandora_default_services_endpoint() { $endpoint->debug = 0; return array($endpoint); } + + + + + + + + + + +