-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- #42 - cause: empty operationId with tags would cause scope_compose returns duplicated scopes. - fix: it’s meaningless to add and Operation with empty operationId into ScopeDict
- Loading branch information
ml
authored and
ml
committed
Oct 8, 2015
1 parent
bad0be2
commit 45d1124
Showing
3 changed files
with
42 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"swagger":"2.0", | ||
"host":"http://test.com", | ||
"basePath":"/v1", | ||
"paths":{ | ||
"/t":{ | ||
"get":{ | ||
"tags":[ | ||
"v1", | ||
"v2" | ||
] | ||
}, | ||
"put":{ | ||
"tags":[ | ||
"v3" | ||
] | ||
}, | ||
"post":{ | ||
"tags":[ | ||
"v1", | ||
"v2", | ||
"v3" | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters