mirror of
https://github.com/Radarr/Radarr
synced 2025-02-13 10:05:55 +00:00
10 lines
245 B
JavaScript
10 lines
245 B
JavaScript
'use strict';
|
||
define(
|
||
[
|
||
'Settings/Indexers/Model'
|
||
], function (IndexerModel) {
|
||
return Backbone.Collection.extend({
|
||
url : window.ApiRoot + '/indexer',
|
||
model: IndexerModel
|
||
});
|
||
});
|