mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
bee58922b2
issue #2271 - should allow development of new admin UI whilst still having access to the old ui
10 lines
279 B
JavaScript
10 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'
|
|
});
|
|
|
|
}());
|