Browse Source

refactor(nocodb): use the same email in swagger.json

pull/5222/head
Wing-Kam Wong 2 years ago
parent
commit
13a696d270
  1. 10
      packages/nocodb/src/schema/swagger.json

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

@ -169,7 +169,7 @@
"examples": { "examples": {
"example-1": { "example-1": {
"value": { "value": {
"email": "user@nocodb.com", "email": "user@example.com",
"password": "Password" "password": "Password"
} }
} }
@ -198,7 +198,7 @@
"example-1": { "example-1": {
"value": { "value": {
"id": "us_8kugj628ebjngs", "id": "us_8kugj628ebjngs",
"email": "user@nocodb.com", "email": "user@example.com",
"email_verified": true, "email_verified": true,
"firstname": "Alice", "firstname": "Alice",
"lastname": "Smith", "lastname": "Smith",
@ -12265,7 +12265,7 @@
"examples": [ "examples": [
{ {
"created_at": "2023-03-01 11:36:49", "created_at": "2023-03-01 11:36:49",
"email": "alice.smith@nocodb.com", "email": "user@example.com",
"email_verified": true, "email_verified": true,
"firstName": "Alice", "firstName": "Alice",
"id": "us_8kugj628ebjngs", "id": "us_8kugj628ebjngs",
@ -12283,7 +12283,7 @@
}, },
"email": { "email": {
"description": "The email of the user", "description": "The email of the user",
"example": "alice.smith@nocodb.com", "example": "user@example.com",
"format": "email", "format": "email",
"type": "string" "type": "string"
}, },
@ -12371,7 +12371,7 @@
"users": { "users": {
"list": { "list": {
"created_at": "2023-03-01 11:36:49", "created_at": "2023-03-01 11:36:49",
"email": "alice.smith@nocodb.com", "email": "user@example.com",
"email_verified": true, "email_verified": true,
"firstName": "Alice", "firstName": "Alice",
"id": "us_8kugj628ebjngs", "id": "us_8kugj628ebjngs",

Loading…
Cancel
Save