Expose all mock profiles

cgen-41f1a1260873414d9fb0e499123b11b2
This commit is contained in:
Builder.io 2025-09-30 22:04:37 +00:00
parent 62971899ee
commit 523199508a

View file

@ -238,6 +238,10 @@ class MockAuthService {
return this.profiles.get(userId) || null;
}
getAllProfiles(): MockProfile[] {
return Array.from(this.profiles.values());
}
async updateProfile(
userId: string,
updates: Partial<MockProfile>,