mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-13 22:53:32 +03:00
56de932492
closes #1616 - removed pars from model - changed checkbox handling
11 lines
279 B
JavaScript
11 lines
279 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'
|
|
});
|
|
|
|
}());
|