1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-19 21:46:43 -04:00
Files
Sonarr/src/UI/Settings/DownloadClient/DownloadClientSettingsModel.js
T
Keivan Beigi 0ee5261a2a stripBom
2015-01-29 18:10:16 -08:00

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'
});
});