Skip to content

Instantly share code, notes, and snippets.

@geykel

geykel/home.ts Secret

Created July 13, 2017 00:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save geykel/051916bb903f9d2311633eabab04384d to your computer and use it in GitHub Desktop.
Save geykel/051916bb903f9d2311633eabab04384d to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
import { AuthService } from '../../providers/auth-service';
import { SignInPage } from '../signin/signin';
@Component({
selector: 'page-home',
templateUrl: 'home.html'
})
export class HomePage {
constructor(
public navCtrl: NavController,
public authService: AuthService) {
}
signOut() {
this.authService.signOut();
this.navCtrl.setRoot(SignInPage);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment