File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
java/com/iemr/common/service/videocall Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ springdoc.swagger-ui.enabled=false
170170isProduction =@env.IS_PRODUCTION@
171171grievanceAllocationRetryConfiguration =3
172172
173- start-grievancedatasync-scheduler =false
173+ start-grievancedatasync-scheduler =true
174174cron-scheduler-grievancedatasync =0 0/2 * * * ?
175175
176176captcha.secret-key =@env.CAPTCHA_SECRET_KEY@
Original file line number Diff line number Diff line change 2121import com .iemr .common .utils .config .ConfigProperties ;
2222import com .iemr .common .utils .mapper .OutputMapper ;
2323import com .iemr .common .utils .response .OutputResponse ;
24+ import org .springframework .beans .factory .annotation .Value ;
2425
2526@ Service
2627public class VideoCallServiceImpl implements VideoCallService {
@@ -32,14 +33,15 @@ public class VideoCallServiceImpl implements VideoCallService {
3233 @ Autowired
3334 private VideoCallMapper videoCallMapper ;
3435
36+ @ Value ("${video-call-url}" )
3537 private String meetingLink ;
38+
3639 private boolean isLinkSent = false ;
3740 private String consultationStatus = "Not Initiated" ;
3841 private String jitsiLink ;
39-
4042 public VideoCallServiceImpl () {
41- this .jitsiLink = ConfigProperties .getPropertyByName ("video-call-url" );
42- logger .info ("Jitsi Link fetched: " + this .jitsiLink );
43+ // this.jitsiLink = ConfigProperties.getPropertyByName("video-call-url");
44+ // logger.info("Jitsi Link fetched: " + this.jitsiLink);
4345 }
4446
4547 @ Override
You can’t perform that action at this time.
0 commit comments