Ghost/core/client/models/settings.js

9 lines
202 B
JavaScript
Raw Normal View History

/*global window, document, Ghost, $, _, Backbone */
2013-06-08 09:05:40 +04:00
(function () {
"use strict";
Ghost.Models.Settings = Backbone.Model.extend({
url: Ghost.settings.apiRoot + '/settings'
2013-06-08 09:05:40 +04:00
});
}());