env update

This commit is contained in:
2023-01-28 19:59:42 -05:00
parent aae99a7b50
commit e4b1ceae30
3 changed files with 10 additions and 3 deletions
+4
View File
@@ -14,12 +14,16 @@ class usersService {
return this.postAuxEnd("/login", reqData);
}
getUserReminders(){
return this.getAuxEnd("/reminders", null);
}
//---------------------------------------- -----
//---------------------------------------- -----
// Unified call below
//---------------------------------------- -----
//---------------------------------------- -----
getAuxEnd(uri, reqData) {
debugger;
const endPoint = process.env.REACT_APP_USERS_ENDPOINT + uri;
return Axios.get(endPoint)
.then((response) => {