Browse Source

refactor(nocodb): show all & hide all response & example

pull/5269/head
Wing-Kam Wong 2 years ago
parent
commit
131d77e0b9
  1. 28
      packages/nocodb/src/schema/swagger.json

28
packages/nocodb/src/schema/swagger.json

@ -4607,7 +4607,19 @@
"operationId": "db-view-show-all-column",
"responses": {
"200": {
"description": "OK"
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "boolean"
},
"examples": {
"Example 1": {
"value": true
}
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequest"
@ -4647,7 +4659,19 @@
"operationId": "db-view-hide-all-column",
"responses": {
"200": {
"description": "OK"
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "boolean"
},
"examples": {
"Example 1": {
"value": true
}
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequest"

Loading…
Cancel
Save