Browse Source

fix(nocodb): update form banner & logo schema from text to string

pull/7717/head
Ramesh Mane 7 months ago
parent
commit
89d1fedf9c
  1. 4
      packages/nocodb/src/schema/swagger-v2.json
  2. 4
      packages/nocodb/src/schema/swagger.json

4
packages/nocodb/src/schema/swagger-v2.json

@ -13024,7 +13024,7 @@
}
},
"banner_image_url": {
"$ref": "#/components/schemas/TextOrNull",
"$ref": "#/components/schemas/StringOrNull",
"description": "Banner Image URL. Not in use currently."
},
"columns": {
@ -13067,7 +13067,7 @@
"example": "collaborative"
},
"logo_url": {
"$ref": "#/components/schemas/TextOrNull",
"$ref": "#/components/schemas/StringOrNull",
"description": "Logo URL. Not in use currently."
},
"meta": {

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

@ -18772,7 +18772,7 @@
"type": "object",
"properties": {
"banner_image_url": {
"$ref": "#/components/schemas/TextOrNull",
"$ref": "#/components/schemas/StringOrNull",
"description": "Banner Image URL. Not in use currently."
},
"email": {
@ -18786,7 +18786,7 @@
"type": "string"
},
"logo_url": {
"$ref": "#/components/schemas/TextOrNull",
"$ref": "#/components/schemas/StringOrNull",
"description": "Logo URL. Not in use currently."
},
"meta": {

Loading…
Cancel
Save