mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 17:47:08 +00:00
663160c06a
renamed NzbDrone.Backbone to UI
6 lines
230 B
JavaScript
6 lines
230 B
JavaScript
define(['app','Series/SeasonModel'], function () {
|
|
NzbDrone.Series.SeasonCollection = Backbone.Collection.extend({
|
|
url: NzbDrone.Constants.ApiRoot + '/season',
|
|
model: NzbDrone.Series.SeasonModel
|
|
});
|
|
});
|