1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Series/SeasonCollection.js

7 lines
233 B
JavaScript
Raw Normal View History

define(['app', 'Series/SeasonModel'], function () {
2013-03-04 01:42:26 +03:00
NzbDrone.Series.SeasonCollection = Backbone.Collection.extend({
url : NzbDrone.Constants.ApiRoot + '/season',
2013-03-04 01:42:26 +03:00
model: NzbDrone.Series.SeasonModel
});
});