Skip to content

Commit 8719313

Browse files
Merge pull request #1386 from ORCID/openAssertionServiceEndpoints
allowing permission link endpoint access
2 parents a576800 + 7bccef4 commit 8719313

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

assertion-service-2/src/main/java/org/orcid/mp/assertion/config/SecurityConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public class SecurityConfig {
2929
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
3030
http
3131
.authorizeHttpRequests(authorize -> authorize
32+
.requestMatchers("/id-token", "/assertion/record/**").permitAll()
3233
.requestMatchers("/internal/**").hasAuthority("SCOPE_internal")
3334
.anyRequest().authenticated()
3435
)

0 commit comments

Comments
 (0)