From d48aedc4bf198c37d10d85a88ad64f1a4a7afd7e Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Mon, 18 May 2020 14:14:42 -0400 Subject: [PATCH] Bug 25535: Hold API mapping maps cancellationdate to cancelation_date, but it should be cancellation_date --- Koha/Hold.pm | 2 +- api/v1/swagger/definitions/hold.json | 2 +- api/v1/swagger/paths/holds.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Koha/Hold.pm b/Koha/Hold.pm index 6896f5e94d..e8d9e0cc2c 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 dda32600b3..db4c90e209 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 e4e925d8ef..847d3b83ca 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", -- 2.24.2 (Apple Git-127)