sign up url

This commit is contained in:
CHIEFSOFT\ameye
2025-06-28 20:38:43 -04:00
parent 60488524ed
commit 77eaf15c6a
+3 -3
View File
@@ -114,7 +114,7 @@ export const signUpUser = (reqData) => {
let postData = {
...reqData
}
return postAuxEnd('/panel/auth/register', postData, false)
return postAuxEnd('/panel/register', postData, false)
}
// FUNCTION TO VERIFY EMAIL
@@ -122,7 +122,7 @@ export const verifyEmail = (reqData) => {
let postData = {
...reqData
}
return postAuxEnd('/panel/auth/register/verify', postData, false)
return postAuxEnd('/panel/register/verify', postData, false)
}
// FUNCTION TO COMPLETE REGISTRATION
@@ -130,7 +130,7 @@ export const completeRegistration = (reqData) => {
let postData = {
...reqData
}
return postAuxEnd('/panel/auth/register/complete', postData, false)
return postAuxEnd('/panel/register/complete', postData, false)
}
// FUNCTION TO SUBSCRIBE