mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
1a9e91f120
closes #2277 - Added ES6 linting to core/client/ - Fix typeof array comparison
13 lines
287 B
JavaScript
13 lines
287 B
JavaScript
/*global Ghost */
|
|
(function () {
|
|
'use strict';
|
|
|
|
Ghost.Models.User = Ghost.ProgressModel.extend({
|
|
url: Ghost.paths.apiRoot + '/users/me/'
|
|
});
|
|
|
|
// Ghost.Collections.Users = Backbone.Collection.extend({
|
|
// url: Ghost.paths.apiRoot + '/users/'
|
|
// });
|
|
|
|
}());
|