created updateContactTag method inside MasterRespositoty for update contact tag

This commit is contained in:
Pramod Mahajan 2025-05-19 22:26:01 +05:30
parent 2f05c4ba6a
commit c70208c467

View File

@ -54,6 +54,6 @@ export const MasterRespository = {
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 )
updateContactTag: ( id, data ) => api.post( `/api/master/contact-tag/edit/${ id }`, data )
}