Bugzilla – Attachment 67316 Details for
Bug 18999
Acq: Shipping cost not included in total spent on acq home and funds page
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 18282: operationId must be unique
Bug-18282-operationId-must-be-unique.patch (text/plain), 2.08 KB, created by
Josef Moravec
on 2017-09-22 16:00:23 UTC
(
hide
)
Description:
Bug 18282: operationId must be unique
Filename:
MIME Type:
Creator:
Josef Moravec
Created:
2017-09-22 16:00:23 UTC
Size:
2.08 KB
patch
obsolete
>From dadcb56690d7daa10fe5dff3ee9880e537897e3b Mon Sep 17 00:00:00 2001 >From: Lari Taskula <lari.taskula@jns.fi> >Date: Thu, 16 Mar 2017 13:53:44 +0200 >Subject: [PATCH] Bug 18282: operationId must be unique > >operationId has the following documentation: > "Unique string used to identify the operation. The id MUST be unique among all > operations described in the API." > >This patch modifies operationIds to be unique accross our API operations. > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> > >Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> > >https://bugs.koha-community.org/show_bug.cgi?id=18999 >--- > api/v1/swagger/paths/cities.json | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > >diff --git a/api/v1/swagger/paths/cities.json b/api/v1/swagger/paths/cities.json >index 8b739d6..2fe9f49 100644 >--- a/api/v1/swagger/paths/cities.json >+++ b/api/v1/swagger/paths/cities.json >@@ -2,7 +2,7 @@ > "/cities": { > "get": { > "x-mojo-to": "Cities#list", >- "operationId": "list", >+ "operationId": "listCities", > "tags": ["cities"], > "produces": [ > "application/json" >@@ -64,7 +64,7 @@ > }, > "post": { > "x-mojo-to": "Cities#add", >- "operationId": "add", >+ "operationId": "addCity", > "tags": ["cities"], > "parameters": [{ > "name": "body", >@@ -120,7 +120,7 @@ > "/cities/{cityid}": { > "get": { > "x-mojo-to": "Cities#get", >- "operationId": "get", >+ "operationId": "getCity", > "tags": ["cities"], > "parameters": [{ > "$ref": "../parameters.json#/cityidPathParam" >@@ -157,7 +157,7 @@ > }, > "put": { > "x-mojo-to": "Cities#update", >- "operationId": "update", >+ "operationId": "updateCity", > "tags": ["cities"], > "parameters": [{ > "$ref": "../parameters.json#/cityidPathParam" >@@ -219,7 +219,7 @@ > }, > "delete": { > "x-mojo-to": "Cities#delete", >- "operationId": "delete", >+ "operationId": "deleteCity", > "tags": ["cities"], > "parameters": [{ > "$ref": "../parameters.json#/cityidPathParam" >-- >2.1.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 18999
:
65446
|
65626
|
66378
|
66855
|
67173
|
67316
|
67317
|
67318
|
67319
|
67471
|
67472
|
67473
|
67474