🔨 Allow invite link without login

This commit is contained in:
SebClem 2022-07-04 15:44:22 +02:00
parent b0e479f247
commit b785f40e4f
Signed by: sebclem
GPG Key ID: 5A4308F6A359EA50

View File

@ -26,6 +26,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS).and()
.authorizeRequests()
.antMatchers("/api/v2/auth/**").permitAll()
.antMatchers("/api/v2/guild/inviteLink").permitAll()
.antMatchers("/swagger-ui/**").permitAll()
.antMatchers("/swagger-ui.html").permitAll()
.antMatchers("/v3/api-docs/**").permitAll()