mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-21 22:05:43 -04:00
7 lines
247 B
JavaScript
7 lines
247 B
JavaScript
var Backbone = require('backbone');
|
|
var RemotePathMappingModel = require('./RemotePathMappingModel');
|
|
|
|
module.exports = Backbone.Collection.extend({
|
|
model : RemotePathMappingModel,
|
|
url : window.NzbDrone.ApiRoot + '/remotePathMapping'
|
|
}); |