1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-26 01:37:07 +00:00
Sonarr/UI/System/StatusModel.js
2013-07-28 13:20:26 -07:00

15 lines
281 B
JavaScript

'use strict';
define(
[
'backbone'
], function (Backbone) {
var model = Backbone.Model.extend({
url: window.ApiRoot + '/system/status'
});
var instance = new model();
instance.fetch();
return instance;
});