mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 20:44:00 +02:00
removed NzbDrone. namespace, everything is done using require.
This commit is contained in:
@@ -1,7 +1,10 @@
|
||||
'use strict';
|
||||
define(['app', 'Settings/Indexers/Model'], function (App, IndexerModel) {
|
||||
return Backbone.Collection.extend({
|
||||
url : App.Constants.ApiRoot + '/indexer',
|
||||
model: IndexerModel
|
||||
'use strict';
|
||||
define(
|
||||
[
|
||||
'Settings/Indexers/Model'
|
||||
], function (IndexerModel) {
|
||||
return Backbone.Collection.extend({
|
||||
url : window.ApiRoot + '/indexer',
|
||||
model: IndexerModel
|
||||
});
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user