Ghost/core/client/models/settings.js
cobbspur 713e4c0d5c Adds slashes to urls
ref issue #448

- adds slashes to urls, templates and tests

TODO

Add function to add slash to urls automatically
2013-09-17 02:39:55 +01:00

10 lines
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"
});
}());