mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 16:32:56 +01:00
10 lines
227 B
JavaScript
10 lines
227 B
JavaScript
'use strict';
|
|
define([
|
|
'Settings/SettingsModelBase'], function (ModelBase) {
|
|
return ModelBase.extend({
|
|
|
|
successMessage: 'Notification Saved',
|
|
errorMessage : 'Couldn\'t save notification'
|
|
});
|
|
});
|