Unverified Commit 05a2ea1b authored by Mahesh Maney R's avatar Mahesh Maney R Committed by GitHub
Browse files

Update UserHandler.java

Showing with 2 additions and 2 deletions
+2 -2
......@@ -33,8 +33,8 @@ public class UserHandler {
return userService.deactivateUser(body);
}
public ResponseEntity<JsonNode> sendOTP(int phoneNumber) throws URISyntaxException {
return userService.sendOTP(phoneNumber);
public ResponseEntity<JsonNode> sendOTP(int phoneNumber, String name, int otp) throws URISyntaxException {
return userService.sendOTP(phoneNumber, name, otp);
}
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment