mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-02-28 18:55:20 +00:00
12 lines
315 B
JavaScript
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'
|
|
});
|
|
});
|