Coverity Scan issues fix
[portal.git] / portal-BE / src / main / java / org / onap / portal / configuration / SecurityConfig.java
index b9e6033..3fae09c 100644 (file)
@@ -75,7 +75,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
        protected void configure(HttpSecurity http) throws Exception {
               http
                       .authorizeRequests()
-                      .antMatchers("/static/img/**").permitAll()
+                      .antMatchers("/img/**").permitAll()
                       .anyRequest().authenticated()
                       .and()
                       .formLogin()