diff options
author | Vitaly Takmazov | 2018-02-18 00:41:09 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-02-18 00:43:30 +0300 |
commit | bfab7023d8e635de6189e0f2bea6dad2c8ddd7b6 (patch) | |
tree | 7625398f0d40e2fbb4a6bb84c753cfa72f860932 /juick-server/src/main | |
parent | b8a19617ef2c257e1233ad215836b788fa019afb (diff) |
server: allow / to visitor
Diffstat (limited to 'juick-server/src/main')
-rw-r--r-- | juick-server/src/main/java/com/juick/server/configuration/ApiSecurityConfig.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/juick-server/src/main/java/com/juick/server/configuration/ApiSecurityConfig.java b/juick-server/src/main/java/com/juick/server/configuration/ApiSecurityConfig.java index 4f7045a6..6aeb4101 100644 --- a/juick-server/src/main/java/com/juick/server/configuration/ApiSecurityConfig.java +++ b/juick-server/src/main/java/com/juick/server/configuration/ApiSecurityConfig.java @@ -64,7 +64,7 @@ public class ApiSecurityConfig extends WebSecurityConfigurerAdapter { protected void configure(HttpSecurity http) throws Exception { http.authorizeRequests() .antMatchers(HttpMethod.OPTIONS).permitAll() - .antMatchers("/messages", "/users", "/thread", "/tags", "/tlgmbtwbhk", "/fbwbhk", + .antMatchers("/", "/messages", "/users", "/thread", "/tags", "/tlgmbtwbhk", "/fbwbhk", "/skypebotendpoint").permitAll() .anyRequest().hasRole("USER") .and().httpBasic().authenticationEntryPoint(getJuickAuthenticationEntryPoint()) |