1a9e91f120
closes #2277 - Added ES6 linting to core/client/ - Fix typeof array comparison
11 lines
249 B
JavaScript
11 lines
249 B
JavaScript
/*global Ghost */
|
|
(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,app',
|
|
id: '0'
|
|
});
|
|
|
|
}());
|