feat : #12 recherche et filtre

This commit is contained in:
styve Lioumba
2025-11-28 15:15:33 +01:00
parent 4716e82628
commit 4ed6d812db
30 changed files with 308 additions and 487 deletions

View File

@@ -11,7 +11,9 @@ export class FakeAuthRepository implements AuthRepository {
newPassword: string,
confirmPassword: string
): Observable<boolean> {
return of(true);
return of(
resetToken === 'fakeToken' && newPassword === confirmPassword && fakeUsers[0].verified
);
}
get(): User | undefined {