mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-10 13:02:47 +01:00
663160c06a
renamed NzbDrone.Backbone to UI
7 lines
230 B
JavaScript
7 lines
230 B
JavaScript
define(['app','Series/SeasonModel'], function () {
|
|
NzbDrone.Series.SeasonCollection = Backbone.Collection.extend({
|
|
url: NzbDrone.Constants.ApiRoot + '/season',
|
|
model: NzbDrone.Series.SeasonModel
|
|
});
|
|
});
|