Commit 4ada3d1c authored by Lorenzo Trujillo Rojas's avatar Lorenzo Trujillo Rojas
Browse files

Se agrego el metodo de cambiar contraseña a las abstracciones del repositorio...

Se agrego el metodo de cambiar contraseña a las abstracciones del repositorio y al datasource de perfil
parent 66a662a1
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -4,4 +4,5 @@ export interface ProfileDataSource {
    getInterests: () => Promise<IOption[]>;
    saveInterests: (options: IOption[]) => Promise<void>;
    setUpProfile: (birthdate: string, interests: IOption[]) => Promise<void>;
    changePassword: (oldPassword: string, newPassword: string) => Promise<void>;
}; 
 No newline at end of file
+1 −0
Original line number Diff line number Diff line
@@ -4,4 +4,5 @@ export interface ProfileRepository {
    getInterests: () => Promise<IOption[]>;
    saveInterests: (options: IOption[]) => Promise<void>;
    setUpProfile: (birthdate: string, interests: IOption[]) => Promise<void>;
    changePassword: (oldPassword: string, newPassword: string) => Promise<void>;
}; 
 No newline at end of file