added set external url endpoint

This commit was merged in pull request #92.
This commit is contained in:
victorAnumudu
2025-10-03 17:36:10 +01:00
parent 1101e80d91
commit 0f58da3dce
2 changed files with 39 additions and 8 deletions
+8
View File
@@ -246,6 +246,14 @@ export const getCommonPractice = (reqData) => {
return postAuxEnd(`/panel/common/practice`, postData, false)
}
// FUNCTION TO SET EXTERNAL URL
export const setExternalURL = (reqData) => {
let postData = {
...reqData
}
return postAuxEnd('/panel/myproduct/external-url', postData, false)
}