add chat offline

This commit is contained in:
Peter Maquiran
2022-02-02 20:16:12 +01:00
parent 58e9698264
commit 33cce0fd44
7 changed files with 134 additions and 49 deletions
+15 -1
View File
@@ -17,9 +17,10 @@ export class MessageService {
u = {}
t = ''
_id =''
_updatedAt = {}
_updatedAt = ''
file
attachments
offline = false
constructor(private storage: Storage) {
}
@@ -47,10 +48,23 @@ export class MessageService {
});
}
}
if(this.rid == 'offline') {
this.offline = true
} else {
this.offline = false
}
}
delete() {}
showDateDuration() {}
resend() {
}
}