Skip to content

Commit

Permalink
Merge pull request #68 from AI-SIP/develop
Browse files Browse the repository at this point in the history
소개 페이지 버그 수정
  • Loading branch information
KiSeungMin authored Nov 5, 2024
2 parents d8eb46f + a8b4019 commit 387e3e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
http.cors().and().csrf().disable()
.authorizeHttpRequests(authorizeRequests ->
authorizeRequests
.requestMatchers("/", "/images/**", "/api/auth/**", "/login", "/css/**", "/js/**").permitAll()
.requestMatchers("/", "/home","/images/**", "/api/auth/**", "/login", "/css/**", "/js/**").permitAll()
.requestMatchers("/admin/**").hasRole("ADMIN")
.anyRequest().authenticated()
)
Expand Down

0 comments on commit 387e3e8

Please sign in to comment.