mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-07 11:30:55 +03:00
f0c6aec36d
closes #2277 - Added ES6 linting to core/client/ - Fix typeof array comparison
14 lines
287 B
JavaScript
14 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/'
|
|
// });
|
|
|
|
}());
|