6294a8fc4d
closes #488 and #107 - added dropdown for theme selection on general page - added GET /api/v0.1/themes to retrieve available themes - modified settings model to get available themes - modified updateSettignsCache to remove path from settings.activeTheme
16 lines
413 B
JavaScript
16 lines
413 B
JavaScript
/*global window, document, Ghost, $, _, Backbone */
|
|
(function () {
|
|
"use strict";
|
|
|
|
// Set the url manually and id to '0' to force PUT requests
|
|
Ghost.Models.Settings = Backbone.Model.extend({
|
|
url: Ghost.settings.apiRoot + '/settings',
|
|
id: "0",
|
|
defaults: {
|
|
title: 'My Blog',
|
|
description: '',
|
|
email: 'admin@tryghost.org'
|
|
}
|
|
});
|
|
|
|
}()); |