1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-19 14:11:40 +00:00
Radarr/NzbDrone.Web/_backboneApp/AddSeries/SearchResultCollection.js

11 lines
282 B
JavaScript
Raw Normal View History

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