Files
w4rpservices/node_modules/laravel-mix/src/components/DisableNotifications.js
2018-10-27 03:51:47 -05:00

25 lines
536 B
JavaScript
Vendored

class DisableNotifications {
/**
* The API name for the component.
*/
name() {
return ['disableNotifications', 'disableSuccessNotifications'];
}
/**
* Register the component.
*/
register() {
if (this.caller === 'disableSuccessNotifications') {
Config.notifications = {
onSuccess: false,
onFailure: true
};
} else {
Config.notifications = false;
}
}
}
module.exports = DisableNotifications;