- Timestamp:
- 10/31/22 23:42:15 (2 years ago)
- Branches:
- master
- Children:
- 044bd76
- Parents:
- 204464d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/edu/gjoko/schedlr/config/AppSecurityConfig.java
r204464d r763289e 46 46 .disable() 47 47 .authorizeRequests() 48 .antMatchers("/login *").permitAll()48 .antMatchers("/login").permitAll() 49 49 .antMatchers("/register_customer").permitAll() 50 50 .antMatchers("/register_business").permitAll() 51 .antMatchers("/homepage").permitAll() 51 52 .antMatchers("/css/**").permitAll() 52 53 .antMatchers("/anonymous*").anonymous() … … 61 62 .loginPage("/login") 62 63 .loginProcessingUrl("/login") 63 .successHandler(authenticationSuccessHandler); 64 .successHandler(authenticationSuccessHandler) 65 .defaultSuccessUrl("/homepage"); 64 66 } 65 67 }
Note:
See TracChangeset
for help on using the changeset viewer.