mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
cfb83d6e40
no issue - reversed workaround for PUT to model - changed save function for image to unset availableThemes
10 lines
No EOL
259 B
JavaScript
10 lines
No EOL
259 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',
|
|
id: "0"
|
|
});
|
|
|
|
}()); |