mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-13 22:53:32 +03:00
62f656cc53
refs #527
15 lines
420 B
JavaScript
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;
|
|
}
|
|
});
|
|
|
|
}());
|