1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-29 19:15:39 +00:00
Lidarr/UI/Settings/Indexers/Collection.js

8 lines
222 B
JavaScript
Raw Normal View History

2013-05-01 22:42:30 +00:00
"use strict";
2013-06-19 01:02:23 +00:00
define(['app', 'Settings/Indexers/Model'], function (App, IndexerModel) {
return Backbone.Collection.extend({
url : App.Constants.ApiRoot + '/indexer',
model: IndexerModel
2013-05-01 00:01:54 +00:00
});
2013-05-01 22:42:30 +00:00
});