mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 14:03:48 +03:00
713e4c0d5c
ref issue #448 - adds slashes to urls, templates and tests TODO Add function to add slash to urls automatically
9 lines
198 B
JavaScript
9 lines
198 B
JavaScript
/*global window, document, Ghost, $, _, Backbone */
|
|
(function () {
|
|
"use strict";
|
|
|
|
Ghost.Models.Themes = Backbone.Model.extend({
|
|
url: Ghost.settings.apiRoot + '/themes'
|
|
});
|
|
|
|
}()); |