mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-12 08:07:10 -07:00
15 lines
302 B
JavaScript
15 lines
302 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'backbone'
|
|
], function (Backbone) {
|
|
|
|
var StatusModel = Backbone.Model.extend({
|
|
url: window.NzbDrone.ApiRoot + '/system/status'
|
|
});
|
|
|
|
|
|
var instance = new StatusModel();
|
|
instance.fetch();
|
|
return instance;
|
|
});
|