connexion avec le back (non testé)

This commit is contained in:
MiharyR 2022-01-13 14:46:01 +01:00
parent 22f6d316b4
commit 6b9a6d7c73
14 changed files with 215 additions and 130 deletions

View file

@ -1,4 +1,5 @@
import {Component, Input, OnInit} from '@angular/core';
import {ProfilService} from "../../services/profil/profil.service";
@Component({
selector: 'app-navbar',
@ -9,9 +10,14 @@ export class NavbarComponent implements OnInit
{
@Input() pour = "login";
constructor() { }
constructor(private profilService: ProfilService) { }
ngOnInit(): void {}
onDeconnexion(): void {}
onDeconnexion(): void
{
this.profilService.setId(-1);
this.profilService.setIsAdmin(false);
}
}