mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-28 23:16:32 -04:00
12 lines
281 B
JavaScript
12 lines
281 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'backbone',
|
|
'System/Update/UpdateModel'
|
|
], function (Backbone, UpdateModel) {
|
|
return Backbone.Collection.extend({
|
|
url : window.NzbDrone.ApiRoot + '/update',
|
|
model: UpdateModel
|
|
});
|
|
});
|