mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
General settings now with save
This commit is contained in:
@@ -1,23 +1,13 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
define(
|
define(
|
||||||
[
|
[
|
||||||
'backbone',
|
'Settings/SettingsModelBase'
|
||||||
'Mixins/AsChangeTrackingModel'
|
], function (SettingsModelBase) {
|
||||||
], function (Backbone, AsChangeTrackingModel) {
|
return SettingsModelBase.extend({
|
||||||
var model = Backbone.Model.extend({
|
|
||||||
|
|
||||||
url: window.ApiRoot + '/settings/host',
|
url : window.ApiRoot + '/settings/host',
|
||||||
|
successMessage: 'General settings saved',
|
||||||
|
errorMessage : 'Failed to save general settings'
|
||||||
|
|
||||||
initialize: function () {
|
|
||||||
this.on('change', function () {
|
|
||||||
this.isSaved = false;
|
|
||||||
}, this);
|
|
||||||
|
|
||||||
this.on('sync', function () {
|
|
||||||
this.isSaved = true;
|
|
||||||
}, this);
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
return AsChangeTrackingModel.call(model);
|
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user