Skip to content

Commit

Permalink
feature/GH-1220: remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
WeizhengSap committed Feb 24, 2019
1 parent 4f7e2af commit c66a2ac
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions projects/core/src/user/occ/user.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,9 @@ export class OccUserService {

// TODO: when the endpoint is ready, add implementation here
resetPassword(token: string, password: string): Observable<{}> {
console.warn('token: ', token);
console.warn('password: ', password);
if (token === undefined || password === undefined) {
return of();
}
return of({});
}

Expand Down

0 comments on commit c66a2ac

Please sign in to comment.