mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 11:55:03 +03:00
bd8db968ea
closes #172 - added type to ghost.settings() - added /api/settings?type=<filter> - added availableThemes to settingsCache - removed cachedSettingsRequestHandler - removed /api/themes (including front end) - changed activePlugins to type "plugin" in default-settings.json
62 lines
1.3 KiB
JSON
62 lines
1.3 KiB
JSON
{
|
|
"core": {
|
|
"databaseVersion": {
|
|
"defaultValue": "000"
|
|
}
|
|
},
|
|
"blog": {
|
|
"title": {
|
|
"defaultValue": "Ghost"
|
|
},
|
|
"description": {
|
|
"defaultValue": "Just a blogging platform."
|
|
},
|
|
"email": {
|
|
"defaultValue": "ghost@example.com",
|
|
"validations": {
|
|
"notNull": true,
|
|
"isEmail": true
|
|
}
|
|
},
|
|
"logo": {
|
|
"defaultValue": ""
|
|
},
|
|
"cover": {
|
|
"defaultValue": ""
|
|
},
|
|
"defaultLang": {
|
|
"defaultValue": "en_US",
|
|
"validations": {
|
|
"notNull": true
|
|
}
|
|
},
|
|
"postsPerPage": {
|
|
"defaultValue": "6",
|
|
"validations": {
|
|
"notNull": true,
|
|
"isNumeric": true
|
|
}
|
|
},
|
|
"forceI18n": {
|
|
"defaultValue": "true",
|
|
"validations": {
|
|
"notNull": true,
|
|
"isIn": ["true", "false"]
|
|
}
|
|
}
|
|
},
|
|
"theme": {
|
|
"activeTheme": {
|
|
"defaultValue": "casper"
|
|
}
|
|
},
|
|
"plugin": {
|
|
"activePlugins": {
|
|
"defaultValue": "[]"
|
|
},
|
|
"installedPlugins": {
|
|
"defaultValue": "[]"
|
|
}
|
|
}
|
|
}
|