mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-17 14:02:40 +01:00
9 lines
227 B
JavaScript
9 lines
227 B
JavaScript
'use strict';
|
|
define([
|
|
'Settings/SettingsModelBase'], function (ModelBase) {
|
|
return ModelBase.extend({
|
|
|
|
successMessage: 'Notification Saved',
|
|
errorMessage : 'Couldn\'t save notification'
|
|
});
|
|
});
|