mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 18:52:05 +03:00
bf33d4619d
ref issue #448 - adds slashes to urls, templates and tests TODO Add function to add slash to urls automatically
14 lines
322 B
JavaScript
14 lines
322 B
JavaScript
/*global window, document, Ghost, $, _, Backbone */
|
|
(function () {
|
|
"use strict";
|
|
|
|
Ghost.Models.User = Backbone.Model.extend({
|
|
url: Ghost.settings.apiRoot + '/users/me/'
|
|
});
|
|
|
|
// Ghost.Collections.Users = Backbone.Collection.extend({
|
|
// url: Ghost.settings.apiRoot + '/users/'
|
|
// });
|
|
|
|
}());
|