auth => clean archi

This commit is contained in:
styve Lioumba
2025-11-19 16:25:32 +01:00
parent c8d0f96b31
commit dd77e3d023
47 changed files with 696 additions and 545 deletions

View File

@@ -1,5 +1,4 @@
import { Component, inject, Input, OnInit } from '@angular/core';
import { AuthService } from '@app/core/services/authentication/auth.service';
import { Component, Input, OnInit } from '@angular/core';
import { environment } from '@env/environment';
import { RouterLink } from '@angular/router';
import { ProjectFacade } from '@app/ui/projects/project.facade';
@@ -14,7 +13,6 @@ import { ProjectFacade } from '@app/ui/projects/project.facade';
export class MyProfileProjectItemComponent implements OnInit {
protected readonly environment = environment;
@Input({ required: true }) projectId = '';
protected authService = inject(AuthService);
private readonly projectFacade = new ProjectFacade();
protected project = this.projectFacade.project;