22d1c8baf2
- New Inbox Member APIs - Return JSON errors for Platform APIs
15 lines
308 B
JavaScript
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,
|
|
};
|