mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-20 21:54:58 -04:00
13 lines
352 B
JavaScript
13 lines
352 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'Settings/SettingsModelBase'
|
|
], function (SettingsModelBase) {
|
|
return SettingsModelBase.extend({
|
|
|
|
url : window.NzbDrone.ApiRoot + '/config/host',
|
|
successMessage: 'General settings saved',
|
|
errorMessage : 'Failed to save general settings'
|
|
});
|
|
});
|