mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 01:37:07 +00:00
663160c06a
renamed NzbDrone.Backbone to UI
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
|
|
});
|
|
});
|
|
|
|
|
|
|