2013-06-25 16:23:09 +04:00
|
|
|
/*global window, document, Ghost, $, _, Backbone */
|
2013-06-08 09:05:40 +04:00
|
|
|
(function () {
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
Ghost.Models.Settings = Backbone.Model.extend({
|
2013-09-09 00:11:52 +04:00
|
|
|
url: Ghost.settings.apiRoot + '/settings'
|
2013-06-08 09:05:40 +04:00
|
|
|
});
|
|
|
|
|
2013-06-25 16:23:09 +04:00
|
|
|
}());
|