1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-27 10:19:41 +00:00
Radarr/UI/Settings/Indexers/Collection.js

12 lines
273 B
JavaScript
Raw Normal View History

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