mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-04 19:15:33 -04:00
11 lines
282 B
JavaScript
11 lines
282 B
JavaScript
/// <reference path="../app.js" />
|
|
/// <reference path="SearchResultModel.js" />
|
|
"use strict";
|
|
|
|
NzbDrone.AddSeries.SearchResultCollection = Backbone.Collection.extend({
|
|
url: NzbDrone.Constants.ApiRoot + '/series/lookup',
|
|
model: NzbDrone.AddSeries.SearchResultModel
|
|
|
|
});
|
|
|