mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-16 21:06:22 +08:00
Delete unused logic and tests Co-authored-by: Nithin David Thomas <[email protected]> Co-authored-by: Muhsin Keloth <[email protected]>
16 lines
308 B
JavaScript
16 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,
|
|
};
|