Skip to content

Commit 7418a51

Browse files
Merge pull request #228 from xenit-eu/ACC-2596
ACC-2596: Allow unauthenticated access to webhook config endpoint
2 parents 0e27b49 + 0b84abd commit 7418a51

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contentgrid-appserver-actuators/src/main/java/com/contentgrid/appserver/actuator/ActuatorConfiguration.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ public static class ActuatorEndpointsWebSecurityConfiguration {
7979
private static final EndpointRequestMatcher ALLOWED_ACTUATOR_ENDPOINTS = EndpointRequest.to(
8080
MetricsEndpoint.class,
8181
PrometheusScrapeEndpoint.class,
82-
PolicyActuator.class
82+
PolicyActuator.class,
83+
WebhookConfigActuator.class
8384
);
8485

8586
@Bean

contentgrid-appserver-integration-test/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ plugins {
22
id 'java-library'
33
id 'io.freefair.lombok'
44
id 'java-test-fixtures'
5-
id 'org.springframework.boot'
65
}
76

87
dependencies {

0 commit comments

Comments
 (0)