From: Kyle M Hall Date: Mon, 18 May 2020 18:14:42 +0000 (-0400) Subject: Bug 25535: Hold API mapping maps cancellationdate to cancelation_date, but it should... X-Git-Url: http://git.equinoxoli.org/?p=koha-equinox.git;a=commitdiff_plain;h=96b4f6802b4b6b195d09f9b7dc9db29288a2b885 Bug 25535: Hold API mapping maps cancellationdate to cancelation_date, but it should be cancellation_date Signed-off-by: Victor Grousset/tuxayo Signed-off-by: Martin Renvoize --- diff --git a/Koha/Hold.pm b/Koha/Hold.pm index 6896f5e..e8d9e0c 100644 --- a/Koha/Hold.pm +++ b/Koha/Hold.pm @@ -416,7 +416,7 @@ sub to_api_mapping { branchcode => 'pickup_library_id', notificationdate => undef, reminderdate => undef, - cancellationdate => 'cancelation_date', + cancellationdate => 'cancellation_date', reservenotes => 'notes', found => 'status', itemnumber => 'item_id', diff --git a/api/v1/swagger/definitions/hold.json b/api/v1/swagger/definitions/hold.json index dda3260..db4c90e 100644 --- a/api/v1/swagger/definitions/hold.json +++ b/api/v1/swagger/definitions/hold.json @@ -22,7 +22,7 @@ "type": ["string", "null"], "description": "Internal library identifier for the pickup library" }, - "cancelation_date": { + "cancellation_date": { "type": ["string", "null"], "format": "date", "description": "The date the hold was cancelled" diff --git a/api/v1/swagger/paths/holds.json b/api/v1/swagger/paths/holds.json index e4e925d..847d3b8 100644 --- a/api/v1/swagger/paths/holds.json +++ b/api/v1/swagger/paths/holds.json @@ -37,7 +37,7 @@ "type": "string" }, { - "name": "cancelation_date", + "name": "cancellation_date", "in": "query", "description": "The date the hold was cancelled", "type": "string",