Skip to content
Open
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
1 change: 1 addition & 0 deletions src/main/environment/common_ci.properties
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ grievanceUserName = @env.GRIEVANCE_USERNAME@
grievancePassword = @env.GRIEVANCE_PASSWORD@
grievanceUserAuthenticate = @env.GRIEVANCE_USER_AUTHENTICATE@
grievanceDataSyncDuration = @env.GRIEVANCE_DATA_SYNC_DURATION@
tempFilePath=@env.TEMP_FILE_PATH@

springdoc.api-docs.enabled=@env.SWAGGER_DOC_ENABLED@
springdoc.swagger-ui.enabled=@env.SWAGGER_DOC_ENABLED@
Expand Down
2 changes: 1 addition & 1 deletion src/main/environment/common_docker.properties
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jwt.secret=${JWT_SECRET_KEY}
#ELK logging file name
logging.path=logs/
logging.file.name=${COMMON_API_LOGGING_FILE_NAME}

tempFilePath=${TEMP_FILE_PATH}

##grievance API call
updateGrievanceDetails = ${GRIEVANCE_API_BASE_URL}/grsbepro/igemr1097/public/api/v1/state-wise/grievance-list?page=PageNumber&currentpage=1
Expand Down
6 changes: 2 additions & 4 deletions src/main/java/com/iemr/common/utils/FilterConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,8 @@
@Configuration
public class FilterConfig {

private static final Logger log = LoggerFactory.getLogger(FilterConfig.class);

@Value("${cors.allowed-origins}")
private String allowedOrigins;
@Value("${cors.allowed-origins}")
private String allowedOrigins;

@Bean
public FilterRegistrationBean<JwtUserIdValidationFilter> jwtUserIdValidationFilter(
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ BeneficiarySmsTemplate=Beneficiary UPTSU SMS
future-days=7

## Path where the files would be stored before uploading to KM server
tempFilePath=c:/temp/
##tempFilePath=c:/temp/
## swaasa file path
lungAssessmentPath=c:/swaasa_audio/

Expand Down
Loading