Ghost/core/client/models/themes.js
2013-10-08 16:39:07 +01:00

9 lines
203 B
JavaScript

/*global window, document, Ghost, $, _, Backbone */
(function () {
'use strict';
Ghost.Models.Themes = Ghost.TemplateModel.extend({
url: Ghost.settings.apiRoot + '/themes'
});
}());