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

10 lines
302 B
JavaScript
Raw Normal View History

'use strict';
2013-06-14 02:19:24 +03:00
define(['app',
'Settings/SettingsModelBase'], function (App, SettingsModelBase) {
return SettingsModelBase.extend({
url : window.ApiRoot + '/settings',
successMessage: 'Settings saved',
2013-06-22 09:24:24 +03:00
errorMessage : 'Failed to save settings'
2013-03-04 03:09:43 +03:00
});
2013-05-02 01:42:30 +03:00
});