1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-20 21:55:03 -04:00
Files
Radarr/UI/Settings/Indexers/Collection.js
T
2013-09-14 00:10:19 -07:00

12 lines
282 B
JavaScript

'use strict';
define(
[
'Settings/Indexers/Model',
'Form/FormBuilder'
], function (IndexerModel) {
return Backbone.Collection.extend({
url : window.NzbDrone.ApiRoot + '/indexer',
model: IndexerModel
});
});