openvidu-server: SecurityConfig updated

pull/437/head
pabloFuente 2020-04-16 19:35:24 +02:00
parent 7f1c6e57bf
commit 27a9e3ef7d
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
// /accept-certificate
.antMatchers(HttpMethod.GET, "/accept-certificate").permitAll()
// Dashboard
.antMatchers("/dashboard").authenticated();
.antMatchers(HttpMethod.GET, "/dashboard/**").authenticated();
// Security for recording layouts
conf.antMatchers("/layouts/**").authenticated();