1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-26 17:57:43 +00:00
Sonarr/UI/Series/SeasonCollection.js

7 lines
233 B
JavaScript
Raw Normal View History

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