mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 09:52:09 +03: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
10 lines
173 B
JavaScript
10 lines
173 B
JavaScript
/*global Ghost, Backbone */
|
|
(function () {
|
|
'use strict';
|
|
|
|
Ghost.Models.Themes = Backbone.Model.extend({
|
|
url: Ghost.paths.apiRoot + '/themes/'
|
|
});
|
|
|
|
}());
|