mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
d1f57a2569
Conflicts: Gruntfile.js core/client/models/post.js core/client/models/settings.js core/client/models/user.js core/client/router.js package.json
9 lines
173 B
JavaScript
9 lines
173 B
JavaScript
/*global Ghost, Backbone */
|
|
(function () {
|
|
'use strict';
|
|
|
|
Ghost.Models.Themes = Backbone.Model.extend({
|
|
url: Ghost.paths.apiRoot + '/themes/'
|
|
});
|
|
|
|
}());
|