c10efd2c7b
Delete unused logic and tests Co-authored-by: Nithin David Thomas <webofnithin@gmail.com> Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
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.create({ inboxId, agentList });
|
|
},
|
|
};
|
|
|
|
export default {
|
|
namespaced: true,
|
|
actions,
|
|
};
|