mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 09:18:08 +00:00
17 lines
511 B
TypeScript
17 lines
511 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { PodnomsAuthService } from 'app/services/podnoms-auth.service';
|
|
import { Router } from '@angular/router';
|
|
|
|
@Component({
|
|
selector: 'app-callback',
|
|
templateUrl: './callback.component.html',
|
|
styleUrls: ['./callback.component.css']
|
|
})
|
|
export class CallbackComponent implements OnInit {
|
|
constructor(private _authService: PodnomsAuthService, private _router: Router) {}
|
|
|
|
ngOnInit() {
|
|
this._router.navigate(['/podcasts']);
|
|
}
|
|
}
|