Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix MCIS label input bug #712

Merged
merged 3 commits into from
Sep 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/api/rest/docs/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -5881,6 +5881,7 @@ var doc = `{
"example": "yes"
},
"label": {
"description": "Label is for describing the mcis in a keyword (any string can be used)",
"type": "string"
},
"name": {
Expand Down Expand Up @@ -5923,7 +5924,10 @@ var doc = `{
"example": "yes"
},
"label": {
"type": "string"
"description": "Label is for describing the mcis in a keyword (any string can be used)",
"type": "string",
"default": "no",
"example": "custom tag"
},
"name": {
"type": "string"
Expand Down
6 changes: 5 additions & 1 deletion src/api/rest/docs/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -5866,6 +5866,7 @@
"example": "yes"
},
"label": {
"description": "Label is for describing the mcis in a keyword (any string can be used)",
"type": "string"
},
"name": {
Expand Down Expand Up @@ -5908,7 +5909,10 @@
"example": "yes"
},
"label": {
"type": "string"
"description": "Label is for describing the mcis in a keyword (any string can be used)",
"type": "string",
"default": "no",
"example": "custom tag"
},
"name": {
"type": "string"
Expand Down
6 changes: 6 additions & 0 deletions src/api/rest/docs/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1132,6 +1132,8 @@ definitions:
example: "yes"
type: string
label:
description: Label is for describing the mcis in a keyword (any string can
be used)
type: string
name:
type: string
Expand Down Expand Up @@ -1162,6 +1164,10 @@ definitions:
example: "yes"
type: string
label:
default: "no"
description: Label is for describing the mcis in a keyword (any string can
be used)
example: custom tag
type: string
name:
type: string
Expand Down
Loading