feat: update the design

This commit is contained in:
Muhsin
2025-10-28 18:16:04 +05:30
parent 2c9208c6a2
commit 742c1aad47
4 changed files with 215 additions and 9 deletions
@@ -332,6 +332,14 @@ export const actions = {
throw new Error(error);
}
},
createCSATTemplate: async (_, { inboxId, template }) => {
const response = await InboxesAPI.createCSATTemplate(inboxId, template);
return response.data;
},
getCSATTemplateStatus: async (_, { inboxId }) => {
const response = await InboxesAPI.getCSATTemplateStatus(inboxId);
return response.data;
},
};
export const mutations = {