mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 18:52:05 +03:00
8a83e9ea4e
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'
|
|
});
|
|
|
|
}());
|