mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
4066d8c680
- Settings fixture that doesn't seem to work - SettingsGeneralRoute with model function calling api - SettingsGeneralModel with save method stubbed - SettingsGeneralController with actions for save, uploadLogo and uploadCover - Let ApplicationRoute handleValidationErrors - Fix actions hash in controller and use bind-attr - Refactor to use single SettingsModel - Implement description word count - Fix broken ajax reference by actually importing ajax method - Refactor to use count-words helper - Refactor isDatedPermalinks into controller - Refactor the isDatedPermalinks to use a custom setter - Remove isDatedPermalinks code from the model
24 lines
No EOL
533 B
JavaScript
24 lines
No EOL
533 B
JavaScript
var settings = {
|
|
"title": "Ghost",
|
|
"description": "Just a blogging platform.",
|
|
"email": "ghost@tryghost.org",
|
|
"logo": "",
|
|
"cover": "",
|
|
"defaultLang": "en_US",
|
|
"postsPerPage": "6",
|
|
"forceI18n": "true",
|
|
"permalinks": "/:slug/",
|
|
"activeTheme": "casper",
|
|
"activeApps": "[]",
|
|
"installedApps": "[]",
|
|
"availableThemes": [
|
|
{
|
|
"name": "casper",
|
|
"package": false,
|
|
"active": true
|
|
}
|
|
],
|
|
"availableApps": []
|
|
};
|
|
|
|
export default settings; |