2013-06-24 23:41:59 +00:00
|
|
|
|
'use strict';
|
|
|
|
|
define(
|
|
|
|
|
[
|
2013-09-26 03:49:22 +00:00
|
|
|
|
'backbone',
|
|
|
|
|
'Release/Model'
|
|
|
|
|
], function (Backbone, ReleaseModel) {
|
|
|
|
|
return Backbone.Collection.extend({
|
2013-09-14 07:10:19 +00:00
|
|
|
|
url : window.NzbDrone.ApiRoot + '/release',
|
2013-06-24 23:41:59 +00:00
|
|
|
|
model: ReleaseModel,
|
2013-06-05 05:38:15 +00:00
|
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
|
state: {
|
|
|
|
|
pageSize: 2000
|
|
|
|
|
},
|
2013-06-07 00:50:17 +00:00
|
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
|
fetchEpisodeReleases: function (episodeId) {
|
|
|
|
|
return this.fetch({ data: { episodeId: episodeId }});
|
|
|
|
|
}
|
|
|
|
|
});
|
2013-06-05 05:38:15 +00:00
|
|
|
|
});
|