connexion au back avec la partie 'beforeConnexion'
This commit is contained in:
parent
be318e8c06
commit
be3956818b
12 changed files with 93 additions and 44 deletions
16
src/app/utils/services/profil/profil.service.spec.ts
Normal file
16
src/app/utils/services/profil/profil.service.spec.ts
Normal 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();
|
||||
});
|
||||
});
|
||||
9
src/app/utils/services/profil/profil.service.ts
Normal file
9
src/app/utils/services/profil/profil.service.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import { Injectable } from '@angular/core';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root'
|
||||
})
|
||||
export class ProfilService
|
||||
{
|
||||
public profileImageUrl: string = "";
|
||||
}
|
||||
Reference in a new issue