Ghost/core/client/models/user.js
2013-10-08 16:39:07 +01:00

14 lines
327 B
JavaScript

/*global window, document, Ghost, $, _, Backbone */
(function () {
'use strict';
Ghost.Models.User = Ghost.TemplateModel.extend({
url: Ghost.settings.apiRoot + '/users/me/'
});
// Ghost.Collections.Users = Backbone.Collection.extend({
// url: Ghost.settings.apiRoot + '/users/'
// });
}());