mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-13 22:53:32 +03:00
62f656cc53
refs #527
10 lines
196 B
JavaScript
10 lines
196 B
JavaScript
/*global window, document, Ghost, $, _, Backbone */
|
|
(function () {
|
|
'use strict';
|
|
|
|
Ghost.Models.Themes = Backbone.Model.extend({
|
|
url: Ghost.paths.apiRoot + '/themes'
|
|
});
|
|
|
|
}());
|