Chatwoot/app/javascript/dashboard/mixins/macrosMixin.js

21 lines
407 B
JavaScript
Raw Normal View History

export default {
methods: {
getDropdownValues(type) {
switch (type) {
case 'assign_team':
case 'send_email_to_team':
return this.teams;
case 'add_label':
return this.labels.map(i => {
return {
id: i.title,
name: i.title,
};
});
default:
return [];
}
},
},
};