Chatwoot/app/javascript/shared/mixins/alertMixin.js
Ximena Sandoval cab5a3e53b
chore: Add a redirect link to the conversation in success toast message (#3711)
When creating a conversation from the contacts tab now we can go directly to the conversation by clicking the link in the success message

Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2022-01-13 11:15:40 -08:00

7 lines
131 B
JavaScript

export default {
methods: {
showAlert(message, action) {
bus.$emit('newToastMessage', message, action);
},
},
};