1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-18 23:48:35 +02:00
Sonarr/UI/Settings/Indexers/Collection.js

12 lines
282 B
JavaScript
Raw Normal View History

'use strict';
define(
[
2013-06-25 18:28:40 +03:00
'Settings/Indexers/Model',
'Form/FormBuilder'
], function (IndexerModel) {
return Backbone.Collection.extend({
2013-09-14 10:10:19 +03:00
url : window.NzbDrone.ApiRoot + '/indexer',
model: IndexerModel
});
2013-05-01 03:01:54 +03:00
});