Chatwoot/app/javascript/dashboard/store/modules/inboxMembers.js
Sivin Varghese c10efd2c7b
chore: inbox member clean up (#2144)
Delete unused logic and tests
Co-authored-by: Nithin David Thomas <webofnithin@gmail.com>
Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
2021-04-27 20:59:00 +05:30

15 lines
308 B
JavaScript

import InboxMembersAPI from '../../api/inboxMembers';
export const actions = {
get(_, { inboxId }) {
return InboxMembersAPI.show(inboxId);
},
create(_, { inboxId, agentList }) {
return InboxMembersAPI.create({ inboxId, agentList });
},
};
export default {
namespaced: true,
actions,
};