mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
18 lines
442 B
JavaScript
18 lines
442 B
JavaScript
'use strict';
|
|
define([
|
|
'Settings/SettingsModelBase'], function (ModelBase) {
|
|
return ModelBase.extend({
|
|
|
|
baseInitialize: ModelBase.prototype.initialize,
|
|
|
|
initialize: function () {
|
|
var name = this.get('name');
|
|
|
|
this.successMessage = 'Saved indexer: ' + name;
|
|
this.errorMessage = 'Couldn\'t save indexer: ' + name;
|
|
|
|
this.baseInitialize.call(this);
|
|
}
|
|
});
|
|
});
|