Skip to content

Commit

Permalink
Refactored method name to recurringAppointment.
Browse files Browse the repository at this point in the history
  • Loading branch information
anubhavBeehyv authored and rahu1ramesh committed Nov 1, 2023
1 parent 7e76a28 commit 660c597
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ private void handleRecurringAppointmentCreatedEvent(Appointment appointment) {
MessageBuilderService messageBuilderService = Context.getRegisteredComponent("messageBuilderService", MessageBuilderService.class);
CommunicationService communicationService = Context.getRegisteredComponent("communicationService", CommunicationService.class);
List<String> providersName = appointmentArgumentsMapper.getProvidersNameInString(appointment);
String message = messageBuilderService.getAppointmentBookingMessage(appointmentArgumentsMapper.createArgumentsMapForRecurringAppointmentBooking(appointment), providersName);
String message = messageBuilderService.getRecurringAppointmentBookingMessage(appointmentArgumentsMapper.createArgumentsMapForRecurringAppointmentBooking(appointment), providersName);
communicationService.sendSMS(phoneNumber, message);
}
private boolean shouldSendEmailForBookingAppointment() {
Expand Down

0 comments on commit 660c597

Please sign in to comment.