mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-28 20:37:34 +00:00
8 lines
252 B
JavaScript
8 lines
252 B
JavaScript
"use strict";
|
|
define(['app', 'Series/EpisodeModel'], function () {
|
|
NzbDrone.Series.EpisodeCollection = Backbone.Collection.extend({
|
|
url : NzbDrone.Constants.ApiRoot + '/episodes',
|
|
model: NzbDrone.Series.EpisodeModel
|
|
});
|
|
});
|