mirror of
https://github.com/Fabio286/antares.git
synced 2025-06-05 21:59:22 +02:00
feat: execution notification for ROLLBACK and COMMIT
This commit is contained in:
@ -451,6 +451,7 @@ export default {
|
||||
};
|
||||
|
||||
await Schema.commitTab(params);
|
||||
this.addNotification({ status: 'success', message: this.$t('message.actionSuccessful', { action: 'COMMIT' }) });
|
||||
}
|
||||
catch (err) {
|
||||
this.addNotification({ status: 'error', message: err.stack });
|
||||
@ -467,6 +468,7 @@ export default {
|
||||
};
|
||||
|
||||
await Schema.rollbackTab(params);
|
||||
this.addNotification({ status: 'success', message: this.$t('message.actionSuccessful', { action: 'ROLLBACK' }) });
|
||||
}
|
||||
catch (err) {
|
||||
this.addNotification({ status: 'error', message: err.stack });
|
||||
|
Reference in New Issue
Block a user