Skip to content

Instantly share code, notes, and snippets.

@deltaepsilon
Created March 25, 2017 23:04
Show Gist options
  • Save deltaepsilon/25d00dc5374c5420cbe9432d64949666 to your computer and use it in GitHub Desktop.
Save deltaepsilon/25d00dc5374c5420cbe9432d64949666 to your computer and use it in GitHub Desktop.
// Client-side code, in my case a web browser
firebase.auth().onAuthStateChanged(function (user) {
this.user = user; // Set my local copy of the 'user' object
if (user) {
this.displayName = user.displayName;
this.photoURL = user.photoURL;
var userRef = firebase.database().ref('queues/login').child(user.uid);
userRef.remove()
.then(function () {
return userRef.set({
email: user.email,
emailVerified: user.emailVerified,
photoURL: user.photoURL,
displayName: user.displayName,
timestamp: new Date().toString()
});
});
}
}.bind(this));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment