mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-24 06:35:49 +03:00
9 lines
203 B
JavaScript
9 lines
203 B
JavaScript
/*global window, document, Ghost, $, _, Backbone */
|
|
(function () {
|
|
'use strict';
|
|
|
|
Ghost.Models.Themes = Ghost.TemplateModel.extend({
|
|
url: Ghost.settings.apiRoot + '/themes'
|
|
});
|
|
|
|
}()); |