mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
17 lines
399 B
JavaScript
17 lines
399 B
JavaScript
|
/*global window, document, Ghost, $, Backbone, _ */
|
||
|
(function () {
|
||
|
"use strict";
|
||
|
|
||
|
// Set the url manually and id to '0' to force PUT requests
|
||
|
Ghost.Models.Settings = Backbone.Model.extend({
|
||
|
url: '/api/v0.1/settings/',
|
||
|
id: "0",
|
||
|
defaults: {
|
||
|
title: 'My Blog',
|
||
|
description: '',
|
||
|
email: 'admin@tryghost.org'
|
||
|
}
|
||
|
});
|
||
|
|
||
|
}());
|