mirror of https://github.com/OpenVidu/openvidu.git
openvidu-server: SecurityConfig updated
parent
7f1c6e57bf
commit
27a9e3ef7d
|
@ -47,7 +47,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
|
||||||
// /accept-certificate
|
// /accept-certificate
|
||||||
.antMatchers(HttpMethod.GET, "/accept-certificate").permitAll()
|
.antMatchers(HttpMethod.GET, "/accept-certificate").permitAll()
|
||||||
// Dashboard
|
// Dashboard
|
||||||
.antMatchers("/dashboard").authenticated();
|
.antMatchers(HttpMethod.GET, "/dashboard/**").authenticated();
|
||||||
|
|
||||||
// Security for recording layouts
|
// Security for recording layouts
|
||||||
conf.antMatchers("/layouts/**").authenticated();
|
conf.antMatchers("/layouts/**").authenticated();
|
||||||
|
|
Loading…
Reference in New Issue