0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/client/models/settings.js

16 lines
413 B
JavaScript
Raw Normal View History

/*global window, document, Ghost, $, _, Backbone */
2013-06-08 00:05:40 -05:00
(function () {
"use strict";
// Set the url manually and id to '0' to force PUT requests
Ghost.Models.Settings = Backbone.Model.extend({
url: Ghost.settings.apiRoot + '/settings',
2013-06-08 00:05:40 -05:00
id: "0",
defaults: {
title: 'My Blog',
description: '',
email: 'admin@tryghost.org'
}
});
}());