Browse Source

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

pull/7717/head
Ramesh Mane 9 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": { "banner_image_url": {
"$ref": "#/components/schemas/TextOrNull", "$ref": "#/components/schemas/StringOrNull",
"description": "Banner Image URL. Not in use currently." "description": "Banner Image URL. Not in use currently."
}, },
"columns": { "columns": {
@ -13067,7 +13067,7 @@
"example": "collaborative" "example": "collaborative"
}, },
"logo_url": { "logo_url": {
"$ref": "#/components/schemas/TextOrNull", "$ref": "#/components/schemas/StringOrNull",
"description": "Logo URL. Not in use currently." "description": "Logo URL. Not in use currently."
}, },
"meta": { "meta": {

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

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

Loading…
Cancel
Save