0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/admin/assets/js/models/settings.js
Hannah Wolfe 588152898c issue #58 - frontend jslint
Improvements to consistency
2013-06-25 13:47:48 +01:00

16 lines
No EOL
398 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'
}
});
}());