mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-19 21:46:43 -04:00
12 lines
341 B
JavaScript
12 lines
341 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'
|
|
});
|
|
});
|