Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
11 lines
226 B
JavaScript
11 lines
226 B
JavaScript
export default {
|
|
methods: {
|
|
getEventLabel(event) {
|
|
const eventName = event.toUpperCase();
|
|
return this.$t(
|
|
`INTEGRATION_SETTINGS.WEBHOOK.FORM.SUBSCRIPTIONS.EVENTS.${eventName}`
|
|
);
|
|
},
|
|
},
|
|
};
|