mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-22 22:15:17 -04:00
11 lines
245 B
JavaScript
11 lines
245 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'Settings/Indexers/Model'
|
|
], function (IndexerModel) {
|
|
return Backbone.Collection.extend({
|
|
url : window.ApiRoot + '/indexer',
|
|
model: IndexerModel
|
|
});
|
|
});
|