Chatwoot/app/javascript/dashboard/store/modules/inboxMembers.js
Sojan Jose 22d1c8baf2
Chore: Inbox Members API improvements (#3008)
- New Inbox Member APIs
- Return JSON errors for Platform APIs
2021-09-14 11:55:02 +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.update({ inboxId, agentList });
},
};
export default {
namespaced: true,
actions,
};