Files
leadchat/app/javascript/dashboard/store/captain/inboxes.js
Sivin Varghese f23d95e004 feat: Add Pinia support and relocate store factory (#12854)
Co-authored-by: Vinay Keerthi <11478411+stonecharioteer@users.noreply.github.com>
Co-authored-by: Shivam Mishra <scm.mymail@gmail.com>
Co-authored-by: Pranav <pranav@chatwoot.com>
2025-11-28 16:31:59 +05:30

23 lines
769 B
JavaScript

import CaptainInboxes from 'dashboard/api/captain/inboxes';
import { createStore } from '../storeFactory';
import { throwErrorMessage } from 'dashboard/store/utils/api';
export default createStore({
name: 'CaptainInbox',
API: CaptainInboxes,
actions: mutations => ({
delete: async function remove({ commit }, { inboxId, assistantId }) {
commit(mutations.SET_UI_FLAG, { deletingItem: true });
try {
await CaptainInboxes.delete({ inboxId, assistantId });
commit(mutations.DELETE, inboxId);
commit(mutations.SET_UI_FLAG, { deletingItem: false });
return inboxId;
} catch (error) {
commit(mutations.SET_UI_FLAG, { deletingItem: false });
return throwErrorMessage(error);
}
},
}),
});