added add series search model/collections

This commit is contained in:
Keivan Beigi 2013-01-22 16:29:58 -08:00 committed by kay.one
parent d110cf2633
commit c247406d67
5 changed files with 56 additions and 8 deletions

View file

@ -1,10 +1,11 @@
/// <reference path="../app.js" />
NzbDrone.AddSeries.SeriesSearchResultModel = Backbone.Model.extend({
NzbDrone.AddSeries.SearchResultModel = Backbone.Model.extend({
});
NzbDrone.AddSeries.SeriesSearchResultCollection = Backbone.Collection.extend({
NzbDrone.AddSeries.SearchResultCollection = Backbone.Collection.extend({
model: NzbDrone.AddSeries.SearchResultModel,
url: "http://localhost/api/v1/series/lookup"
});