added GetNot,CreateNote,UpdateNote inside DirectoryRepository

This commit is contained in:
Pramod Mahajan 2025-05-20 18:04:19 +05:30
parent 3572361c67
commit 3738730ecf

View File

@ -9,5 +9,7 @@ export const DirectoryRepository = {
GetContactProfile: ( id ) => api.get( `/api/directory/profile/${ id }` ),
CreateNote:(data)=>api.post('/api/directory/note',data)
CreateNote: ( data ) => api.post( '/api/directory/note', data ),
GetNote: ( id ) => api.get( `/api/directory/note/${ id }` ),
UpdateNote:(id,data)=>api.put(`/api/directory/note/${id }`,data )
}