Skip to content

Instantly share code, notes, and snippets.

@wojtek1150
Last active December 3, 2018 09:36
Show Gist options
  • Save wojtek1150/ac09e0220539ba3fc206308d86e39240 to your computer and use it in GitHub Desktop.
Save wojtek1150/ac09e0220539ba3fc206308d86e39240 to your computer and use it in GitHub Desktop.
constructor(
private angularFireAuth: AngularFireAuth
) { }
login() {
const authProvider = new firebase.auth.GoogleAuthProvider();
this.angularFireAuth.auth.signInWithRedirect(authProvider);
}
logout() {
this.angularFireAuth.auth.signOut();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment