Bugzilla – Attachment 61169 Details for
Bug 18282
OpenAPI operationId must be unique
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), 1.90 KB, created by
Lari Taskula
on 2017-03-16 12:37:54 UTC
(
hide
)
Description:
Bug 18282: operationId must be unique
Filename:
MIME Type:
Creator:
Lari Taskula
Created:
2017-03-16 12:37:54 UTC
Size:
1.90 KB
patch
obsolete
>From a35d1572171c85e76ee25df406144472cfd37bed 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. >--- > 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" >-- >1.9.1
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 18282
:
61169
|
66369