connexion au back avec la partie 'beforeConnexion'

This commit is contained in:
MiharyR 2021-12-05 16:44:47 +01:00
parent be318e8c06
commit be3956818b
12 changed files with 93 additions and 44 deletions

View file

@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { ProfilService } from './profil.service';
describe('ProfilService', () => {
let service: ProfilService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(ProfilService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});

View file

@ -0,0 +1,9 @@
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class ProfilService
{
public profileImageUrl: string = "";
}