1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-07 15:23:48 +00:00
Radarr/UI/Update/UpdateCollection.js
Mark McDowall de556764bd Changelog is now available in the UI
New: Added changelog to UI
2013-09-28 11:48:30 -07:00

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
});
});