updated incorrect API endpoint

This commit is contained in:
Pramod Mahajan 2025-05-15 22:58:02 +05:30
parent 1e3a1f0365
commit 5b3b6904bf

View File

@ -52,7 +52,7 @@ export const MasterRespository = {
createContactCategory: (data ) => api.post( `/api/master/contact-category`, data ),
updateContactCategory: ( id, data ) => api.post( `/api/master/contact-category/${ id }`, data ),
getContactTag: () => api.get( `/api/master/contact-tag` ),
getContactTag: () => api.get( `/api/master/contact-tags` ),
createContactTag: (data ) => api.post( `/api/master/contact-tag`, data ),
updateContactTag: ( id, data ) => api.post( `/api/master/contact-tag/${ id }`, data )