mirror of
https://github.com/Radarr/Radarr
synced 2025-02-07 15:23:48 +00:00
de556764bd
New: Added changelog to UI
11 lines
274 B
JavaScript
11 lines
274 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'backbone',
|
|
'Update/UpdateModel'
|
|
], function (Backbone, UpdateModel) {
|
|
return Backbone.Collection.extend({
|
|
url : window.NzbDrone.ApiRoot + '/update',
|
|
model: UpdateModel
|
|
});
|
|
});
|