mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
769331d45d
single quotes
19 lines
560 B
JavaScript
19 lines
560 B
JavaScript
'use strict';
|
|
define(['app', 'Series/EpisodeModel'], function () {
|
|
NzbDrone.Series.EpisodeCollection = Backbone.Collection.extend({
|
|
url : NzbDrone.Constants.ApiRoot + '/episodes',
|
|
model: NzbDrone.Series.EpisodeModel,
|
|
|
|
bySeason: function (season) {
|
|
var filtered = this.filter(function (episode) {
|
|
return episode.get('seasonNumber') === season;
|
|
});
|
|
|
|
return new NzbDrone.Series.EpisodeCollection(filtered);
|
|
}
|
|
});
|
|
|
|
|
|
return NzbDrone.Series.EpisodeCollection;
|
|
});
|