mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-19 13:20:28 +00:00
10 lines
282 B
JavaScript
10 lines
282 B
JavaScript
"use strict";
|
|
define(['app', 'AddSeries/SearchResultModel'], function () {
|
|
NzbDrone.AddSeries.SearchResultCollection = Backbone.Collection.extend({
|
|
url: NzbDrone.Constants.ApiRoot + '/series/lookup',
|
|
model: NzbDrone.AddSeries.SearchResultModel
|
|
});
|
|
});
|
|
|
|
|
|
|