1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Settings/General/GeneralSettingsModel.js

14 lines
352 B
JavaScript
Raw Normal View History

'use strict';
define(
[
2013-07-11 18:16:19 +03:00
'Settings/SettingsModelBase'
], function (SettingsModelBase) {
return SettingsModelBase.extend({
2013-06-19 04:02:23 +03:00
2013-07-11 18:16:19 +03:00
url : window.ApiRoot + '/settings/host',
successMessage: 'General settings saved',
errorMessage : 'Failed to save general settings'
});
});