Correction build Walter

This commit is contained in:
Mathieu Sanchez 2019-06-04 17:11:11 +09:00
parent 10e37d437d
commit 69a88c3bc8
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
import { Component, OnInit } from '@angular/core';
import { SEOService } from '@app/core/services';
import { AuthService, SEOService } from '@app/core/services';
@Component( {
selector: 'app-root',
@ -10,7 +10,7 @@ export class AppComponent implements OnInit {
title = 'DiscoTrip';
constructor( public seoService: SEOService ) {
constructor( private seoService: SEOService, public authService: AuthService ) {
}
ngOnInit() {

View File

@ -1,5 +1,5 @@
import { Component, OnInit } from '@angular/core';
import { AuthService } from '@app/core/services/auth/auth.service';
import { AuthService } from '@app/core/services/auth/auth.service';
@Component( {
selector: 'app-register',
@ -8,7 +8,7 @@ import { AuthService } from '@app/core/services/auth/auth.service';
} )
export class RegisterComponent implements OnInit {
constructor(private authService: AuthService) {
constructor( public authService: AuthService ) {
}
ngOnInit() {