Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/environment/common_ci.properties
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ springdoc.swagger-ui.enabled=false
isProduction=@env.IS_PRODUCTION@
grievanceAllocationRetryConfiguration=3

start-grievancedatasync-scheduler=false
start-grievancedatasync-scheduler=true
cron-scheduler-grievancedatasync=0 0/2 * * * ?

captcha.secret-key=@env.CAPTCHA_SECRET_KEY@
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import com.iemr.common.utils.config.ConfigProperties;
import com.iemr.common.utils.mapper.OutputMapper;
import com.iemr.common.utils.response.OutputResponse;
import org.springframework.beans.factory.annotation.Value;

@Service
public class VideoCallServiceImpl implements VideoCallService {
Expand All @@ -32,14 +33,15 @@ public class VideoCallServiceImpl implements VideoCallService {
@Autowired
private VideoCallMapper videoCallMapper;

@Value("${video-call-url}")
private String meetingLink;

private boolean isLinkSent = false;
private String consultationStatus = "Not Initiated";
private String jitsiLink;

public VideoCallServiceImpl() {
this.jitsiLink = ConfigProperties.getPropertyByName("video-call-url");
logger.info("Jitsi Link fetched: " + this.jitsiLink);
// this.jitsiLink = ConfigProperties.getPropertyByName("video-call-url");
// logger.info("Jitsi Link fetched: " + this.jitsiLink);
}

@Override
Expand Down
Loading