1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-20 21:27:16 +00:00
Sonarr/NzbDrone.Web/_backboneApp/AddSeries/SearchResultCollection.js
2013-02-15 16:52:58 -08:00

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
});
});