Ghost/ghost/admin/models/settings.js
2013-11-27 09:57:38 +00:00

15 lines
420 B
JavaScript

/*global window, document, Ghost, $, _, Backbone */
(function () {
'use strict';
//id:0 is used to issue PUT requests
Ghost.Models.Settings = Ghost.ProgressModel.extend({
url: Ghost.paths.apiRoot + '/settings/?type=blog,theme',
id: '0',
parse: function (resp) {
resp.permalinks = resp.permalinks === "/:slug/" ? "" : "1";
return resp;
}
});
}());