Reformat code + Correction merging app.module.ts
This commit is contained in:
parent
f024602072
commit
38fa69e2c9
@ -3,6 +3,7 @@ import { ErrorHandler, NgModule } from '@angular/core';
|
||||
import { AppComponent } from './app.component';
|
||||
import { HomeComponent } from './home/home.component';
|
||||
import { HeaderComponent } from './header/header.component';
|
||||
import { RegisterComponent } from './register/register.component';
|
||||
|
||||
import { BrowserModule } from '@angular/platform-browser';
|
||||
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
||||
@ -10,9 +11,6 @@ import { AppRoutingModule } from '@app/app-routing.module';
|
||||
import { AngularFireModule } from '@angular/fire';
|
||||
import { AngularFireDatabaseModule } from '@angular/fire/database';
|
||||
import { AppMaterialModule } from '@app/app-material.module';
|
||||
import { AppRoutingModule } from '@app/app-routing.module';
|
||||
import { HeaderComponent } from './header/header.component';
|
||||
import { RegisterComponent } from './register/register.component';
|
||||
|
||||
import { LogService, SEOService } from '@app/core/services';
|
||||
import { GlobalErrorHandler } from '@app/core/global-error-handler/global-error-handler.service';
|
||||
|
@ -2,14 +2,12 @@ import { Injectable } from '@angular/core';
|
||||
import { HttpClient } from '@angular/common/http';
|
||||
import { BehaviorSubject, Observable } from 'rxjs';
|
||||
import { Router } from '@angular/router';
|
||||
import * as sha512 from 'js-sha512';
|
||||
|
||||
// import * as config from '@assets/config.json';
|
||||
|
||||
import { User } from '@app/core/model';
|
||||
import { StorageService } from '@app/core/services/storage/storage.service';
|
||||
import { LogService } from '@app/core/services/log/log.service';
|
||||
|
||||
// import * as config from '@assets/config.json';
|
||||
|
||||
@Injectable( { providedIn: 'root' } )
|
||||
export class AuthService {
|
||||
|
||||
|
@ -12,7 +12,8 @@ export class SEOService {
|
||||
private defaultNoIndex = false;
|
||||
private defaultNoFollow = false;
|
||||
|
||||
constructor( private title: Title, private meta: Meta, private router: Router, private activatedRoute: ActivatedRoute ) {}
|
||||
constructor( private title: Title, private meta: Meta, private router: Router, private activatedRoute: ActivatedRoute ) {
|
||||
}
|
||||
|
||||
public start() {
|
||||
this.meta.updateTag( { name: 'og:locale', contest: 'fr_FR' } );
|
||||
|
@ -7,7 +7,8 @@ import { Component, OnInit } from '@angular/core';
|
||||
} )
|
||||
export class HomeComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
constructor() {
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
}
|
||||
|
@ -7,7 +7,8 @@ import { Component, OnInit } from '@angular/core';
|
||||
} )
|
||||
export class RegisterComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
constructor() {
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user