mirror of
https://github.com/Radarr/Radarr
synced 2026-01-14 03:23:19 +01:00
11 lines
344 B
JavaScript
11 lines
344 B
JavaScript
'use strict';
|
|
|
|
define([
|
|
'Settings/SettingsModelBase'
|
|
], function (SettingsModelBase) {
|
|
return SettingsModelBase.extend({
|
|
url : window.NzbDrone.ApiRoot + '/config/downloadclient',
|
|
successMessage: 'Download client settings saved',
|
|
errorMessage : 'Failed to save download client settings'
|
|
});
|
|
});
|