mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
9 lines
198 B
JavaScript
9 lines
198 B
JavaScript
|
/*global window, document, Ghost, $, _, Backbone */
|
||
|
(function () {
|
||
|
"use strict";
|
||
|
|
||
|
Ghost.Models.Themes = Backbone.Model.extend({
|
||
|
url: Ghost.settings.apiRoot + '/themes'
|
||
|
});
|
||
|
|
||
|
}());
|