1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-16 07:52:36 +01:00
Radarr/NzbDrone.Web/_backboneApp/AddSeries/SearchResultCollection.js

11 lines
282 B
JavaScript
Raw Normal View History

2013-01-23 00:58:08 +01:00
/// <reference path="../app.js" />
2013-01-23 02:23:27 +01:00
/// <reference path="SearchResultModel.js" />
2013-01-28 19:06:54 +01:00
"use strict";
2013-01-23 00:58:08 +01:00
NzbDrone.AddSeries.SearchResultCollection = Backbone.Collection.extend({
url: NzbDrone.Constants.ApiRoot + '/series/lookup',
2013-01-28 19:06:54 +01:00
model: NzbDrone.AddSeries.SearchResultModel
2013-01-23 00:58:08 +01:00
});