1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00
Files
Radarr/UI/Settings/Indexers/Collection.js
T

11 lines
245 B
JavaScript

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