mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-27 12:53:13 +03:00
713e4c0d5c
ref issue #448 - adds slashes to urls, templates and tests TODO Add function to add slash to urls automatically
10 lines
276 B
JavaScript
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"
|
|
});
|
|
|
|
}()); |