-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
APIT-982 support tags retrieval from openapi specs (#945)
- Loading branch information
Showing
4 changed files
with
42 additions
and
0 deletions.
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,13 @@ | ||
########################################## | ||
## ## | ||
## AUTOGENERATED CODE -- DO NOT EDIT! ## | ||
## ## | ||
########################################## | ||
|
||
TestApp "foo" [package="com.example.package"]: | ||
@openapi_tags = ["test1", "test \"2\""] | ||
@description =: | ||
| No description. | ||
|
||
#--------------------------------------------------------------------------- | ||
# definitions |
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,10 @@ | ||
swagger: "2.0" | ||
info: | ||
title: foo | ||
tags: | ||
- name: test1 | ||
description: test1 description | ||
- name: test "2" | ||
description: test2 description | ||
paths: | ||
definitions: |
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