1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-24 22:35:49 -04:00
Files
Radarr/src/UI/Settings/Indexers/Collection.js
T
2013-10-08 23:28:37 -07:00

12 lines
282 B
JavaScript

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