Files
doneit-web/src/app/resolvers/userData.resolver.ts
T

13 lines
299 B
TypeScript
Raw Normal View History

2020-10-30 15:22:35 +01:00
import { Injectable } from '@angular/core';
import { AuthService } from '../services/auth.service';
@Injectable({
providedIn: 'root'
})
export class UserDataResolver{
constructor(private authService: AuthService){}
resolve(){
/* return this.authService.getUserData(); */
2020-10-30 15:22:35 +01:00
}
}