mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
d1957958e3
Aligns all requirements vertically for easier reading + adds single quote standard consistently throughout Ghost, except in long strings.
10 lines
No EOL
276 B
JavaScript
10 lines
No EOL
276 B
JavaScript
/*global window, document, Ghost, $, _, Backbone */
|
|
(function () {
|
|
'use strict';
|
|
//id:0 is used to issue PUT requests
|
|
Ghost.Models.Settings = Backbone.Model.extend({
|
|
url: Ghost.settings.apiRoot + '/settings/?type=blog,theme',
|
|
id: '0'
|
|
});
|
|
|
|
}()); |