Guest User

Untitled

a guest
Jan 11th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. saveProfileSettings(newPhoto: string, userId: string) {
  2. const path = `users/${userId}`;
  3. const data = {
  4. profilePhoto: newPhoto
  5. };
  6. this.db.object(path).update(data);
  7. this.router.navigate(['chat']);
  8. }
Add Comment
Please, Sign In to add comment