mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
parent
8503105b39
commit
f2f9073edd
2 changed files with 6 additions and 1 deletions
|
@ -102,6 +102,10 @@
|
|||
"type": ["string", "null"],
|
||||
"maxLength": 500
|
||||
},
|
||||
"email_subject": {
|
||||
"type": ["string", "null"],
|
||||
"maxLength": 300
|
||||
},
|
||||
"custom_template": {
|
||||
"type": ["string", "null"],
|
||||
"maxLength": 100
|
||||
|
|
|
@ -62,7 +62,8 @@ module.exports = {
|
|||
twitter_title: {type: 'string', maxlength: 300, nullable: true},
|
||||
twitter_description: {type: 'string', maxlength: 500, nullable: true},
|
||||
meta_title: {type: 'string', maxlength: 2000, nullable: true, validations: {isLength: {max: 300}}},
|
||||
meta_description: {type: 'string', maxlength: 2000, nullable: true, validations: {isLength: {max: 500}}}
|
||||
meta_description: {type: 'string', maxlength: 2000, nullable: true, validations: {isLength: {max: 500}}},
|
||||
email_subject: {type: 'string', maxlength: 300, nullable: true}
|
||||
},
|
||||
users: {
|
||||
id: {type: 'string', maxlength: 24, nullable: false, primary: true},
|
||||
|
|
Loading…
Add table
Reference in a new issue