mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-20 15:45:19 +00: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
|
|
});
|
|
});
|