14 lines
327 B
JavaScript
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/'
|
|
// });
|
|
|
|
}());
|