1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Web/_backboneApp/AddSeries/SearchResultCollection.js

11 lines
282 B
JavaScript
Raw Normal View History

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