mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 03:12:54 +03:00
6394add9d6
issue #1533 - replaces templateModel which was a weird hybrid with progressModel and progressCollection
10 lines
281 B
JavaScript
10 lines
281 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.settings.apiRoot + '/settings/?type=blog,theme',
|
|
id: '0'
|
|
});
|
|
|
|
}()); |