Loading mobile/src/profile/infrastructure/repositories/profile_repository.ts +3 −0 Original line number Diff line number Diff line Loading @@ -6,6 +6,9 @@ export class ProfileRepositoryImpl implements ProfileRepository { constructor( private dataSource: ProfileDataSource ){} getUserInterests(): Promise<IOption[]>{ return this.dataSource.getUserInterests(); } async changePassword (oldPassword: string, newPassword: string): Promise<void> { return this.dataSource.changePassword(oldPassword, newPassword); }; Loading Loading
mobile/src/profile/infrastructure/repositories/profile_repository.ts +3 −0 Original line number Diff line number Diff line Loading @@ -6,6 +6,9 @@ export class ProfileRepositoryImpl implements ProfileRepository { constructor( private dataSource: ProfileDataSource ){} getUserInterests(): Promise<IOption[]>{ return this.dataSource.getUserInterests(); } async changePassword (oldPassword: string, newPassword: string): Promise<void> { return this.dataSource.changePassword(oldPassword, newPassword); }; Loading