1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-06 08:07:20 +02:00
Radarr/NzbDrone.Web/_backboneApp/AddSeries/SeriesSearchModel.js

12 lines
284 B
JavaScript
Raw Normal View History

2013-01-23 00:58:08 +01:00
/// <reference path="../app.js" />
NzbDrone.AddSeries.SearchResultModel = Backbone.Model.extend({
2013-01-23 00:58:08 +01:00
});
NzbDrone.AddSeries.SearchResultCollection = Backbone.Collection.extend({
model: NzbDrone.AddSeries.SearchResultModel,
url: "http://localhost/api/v1/series/lookup"
2013-01-23 00:58:08 +01:00
});