1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Settings/Indexers/Collection.js
2013-06-26 16:49:04 -07:00

12 lines
273 B
JavaScript

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