mirror of
https://github.com/Readarr/Readarr
synced 2025-12-21 07:45:52 +01:00
11 lines
281 B
JavaScript
11 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
|
|
});
|
|
});
|