Skip to content

Commit ab46b14

Browse files
committed
code refactor
1 parent f4d5415 commit ab46b14

File tree

2 files changed

+0
-27
lines changed

2 files changed

+0
-27
lines changed

src/main/java/com/example/bankapp/config/SecurityConfig.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
3030
.csrf(csrf -> csrf.disable())
3131
.authorizeHttpRequests(authz -> authz
3232
.requestMatchers("/register").permitAll()
33-
.requestMatchers("/home").permitAll()
34-
.requestMatchers("/h2-console/**").permitAll()
35-
.requestMatchers("/images/**").permitAll()
36-
.requestMatchers("/css/**").permitAll()
3733
.anyRequest().authenticated()
3834
)
3935
.formLogin(form -> form

src/main/java/com/example/bankapp/service/TransactionService.java

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)