refactor(config): rename and re-type footer columns
This commit is contained in:
@@ -27,13 +27,13 @@ exports[`Config model > jsonSchema should have correct validations 1`] = `
|
||||
"null",
|
||||
],
|
||||
},
|
||||
"footerDocsLink": {
|
||||
"footerDocsUrl": {
|
||||
"type": [
|
||||
"string",
|
||||
"null",
|
||||
],
|
||||
},
|
||||
"footerImprintLink": {
|
||||
"footerImprintUrl": {
|
||||
"type": [
|
||||
"string",
|
||||
"null",
|
||||
@@ -45,7 +45,7 @@ exports[`Config model > jsonSchema should have correct validations 1`] = `
|
||||
"null",
|
||||
],
|
||||
},
|
||||
"footerPrivacyPolicyLink": {
|
||||
"footerPrivacyPolicyUrl": {
|
||||
"type": [
|
||||
"string",
|
||||
"null",
|
||||
@@ -57,7 +57,7 @@ exports[`Config model > jsonSchema should have correct validations 1`] = `
|
||||
"null",
|
||||
],
|
||||
},
|
||||
"footerTosLink": {
|
||||
"footerTosUrl": {
|
||||
"type": [
|
||||
"string",
|
||||
"null",
|
||||
|
||||
@@ -21,10 +21,10 @@ class Config extends Base {
|
||||
footerCopyrightText: { type: ['string', 'null'] },
|
||||
footerBackgroundColor: { type: ['string', 'null'] },
|
||||
footerTextColor: { type: ['string', 'null'] },
|
||||
footerDocsLink: { type: ['string', 'null'] },
|
||||
footerTosLink: { type: ['string', 'null'] },
|
||||
footerPrivacyPolicyLink: { type: ['string', 'null'] },
|
||||
footerImprintLink: { type: ['string', 'null'] },
|
||||
footerDocsUrl: { type: ['string', 'null'] },
|
||||
footerTosUrl: { type: ['string', 'null'] },
|
||||
footerPrivacyPolicyUrl: { type: ['string', 'null'] },
|
||||
footerImprintUrl: { type: ['string', 'null'] },
|
||||
createdAt: { type: 'string' },
|
||||
updatedAt: { type: 'string' },
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user