Skip to content

Commit

Permalink
fix the endpoint request
Browse files Browse the repository at this point in the history
  • Loading branch information
fzhao99 committed Jan 9, 2024
1 parent 8ae9679 commit fd3dd4c
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package gov.cdc.usds.simplereport.config;

import com.okta.spring.boot.oauth.Okta;
import gov.cdc.usds.simplereport.api.heathcheck.BackendAndDatabaseHealthIndicator;
import gov.cdc.usds.simplereport.service.model.IdentityAttributes;
import gov.cdc.usds.simplereport.service.model.IdentitySupplier;
import lombok.extern.slf4j.Slf4j;
Expand Down Expand Up @@ -58,8 +57,6 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.permitAll()
.requestMatchers(EndpointRequest.to(InfoEndpoint.class))
.permitAll()
.requestMatchers(EndpointRequest.to(BackendAndDatabaseHealthIndicator.class))
.permitAll()
// Patient experience authorization is handled in PatientExperienceController
// If this configuration changes, please update the documentation on both sides
.requestMatchers(HttpMethod.POST, WebConfiguration.PATIENT_EXPERIENCE)
Expand Down

0 comments on commit fd3dd4c

Please sign in to comment.