search profiles withot search

This commit is contained in:
Adolfo Reyna
2021-09-06 13:22:35 -07:00
parent 8490359ea7
commit 66748cec8b
3 changed files with 39 additions and 2 deletions

View File

@@ -19,6 +19,7 @@ class User {
this.isGroup = info.isGroup || false;
this.isCourse = info.isCourse || false;
this.subscribed = info.subscribed || {};
this.notifications = info.notifications || [];
}
toObj(){
@@ -34,6 +35,7 @@ class User {
r.isGroup = this.isGroup;
r.isCourse = this.isCourse;
r.subscribed = this.subscribed;
r.notifications = this.notifications;
return r;
}