mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-13 14:39:52 +03:00
ddc135f222
issue #1533 - replaces templateModel which was a weird hybrid with progressModel and progressCollection
14 lines
327 B
JavaScript
14 lines
327 B
JavaScript
/*global window, document, Ghost, $, _, Backbone */
|
|
(function () {
|
|
'use strict';
|
|
|
|
Ghost.Models.User = Ghost.ProgressModel.extend({
|
|
url: Ghost.settings.apiRoot + '/users/me/'
|
|
});
|
|
|
|
// Ghost.Collections.Users = Backbone.Collection.extend({
|
|
// url: Ghost.settings.apiRoot + '/users/'
|
|
// });
|
|
|
|
}());
|