Chatwoot/app/javascript/dashboard/store/modules/inboxMembers.js

16 lines
308 B
JavaScript
Raw Normal View History

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,
};