Files
Readarr/src/UI/Settings/DownloadClient/RemotePathMapping/RemotePathMappingCollection.js

12 lines
315 B
JavaScript

'use strict';
define([
'backbone',
'Settings/DownloadClient/RemotePathMapping/RemotePathMappingModel'
], function (Backbone, RemotePathMappingModel) {
return Backbone.Collection.extend({
model : RemotePathMappingModel,
url : window.NzbDrone.ApiRoot + '/remotePathMapping'
});
});