added family update component

This commit is contained in:
victorAnumudu
2023-10-23 12:17:32 +01:00
parent 360f0500a9
commit 10dae9193c
4 changed files with 203 additions and 7 deletions
+2 -1
View File
@@ -578,13 +578,14 @@ class usersService {
return this.postAuxEnd("/familyadd", postData);
}
getFamilyUpdate() {
getFamilyUpdate(reqdata) {
var postData = {
uuid: localStorage.getItem("uid"),
member_id: localStorage.getItem("member_id"),
sessionid: localStorage.getItem("session_token"),
page: 0,
limit: 100,
...reqdata
};
return this.postAuxEnd("/familyupdate", postData);
}