mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
37 lines
960 B
JavaScript
37 lines
960 B
JavaScript
|
"use strict";
|
||
|
define(['app',
|
||
|
'backbone.deepmodel',
|
||
|
'Mixins/AsChangeTrackingModel',
|
||
|
'Shared/Messenger'], function (App, DeepModel, AsChangeTrackingModel, Messenger) {
|
||
|
var model = DeepModel.DeepModel.extend({
|
||
|
|
||
|
initialize: function () {
|
||
|
|
||
|
// App.vent.on(App.Commands.SaveSettings, this.saveSettings, this);
|
||
|
this.listenTo(App.vent, App.Commands.SaveSettings, this.saveSettings);
|
||
|
},
|
||
|
|
||
|
saveSettings: function () {
|
||
|
|
||
|
if (!this.isSaved) {
|
||
|
|
||
|
var savePromise = this.save();
|
||
|
|
||
|
Messenger.monitor(
|
||
|
{
|
||
|
promise : savePromise,
|
||
|
successMessage: this.successMessage,
|
||
|
errorMessage : this.errorMessage
|
||
|
});
|
||
|
|
||
|
return savePromise;
|
||
|
}
|
||
|
|
||
|
return undefined;
|
||
|
}
|
||
|
|
||
|
});
|
||
|
|
||
|
return AsChangeTrackingModel.call(model);
|
||
|
});
|