Skip to content

Commit

Permalink
Merge pull request #396 from mash-up-kr/feature/add-team-api
Browse files Browse the repository at this point in the history
feat: fix auth
  • Loading branch information
kh0712 authored Jan 27, 2024
2 parents e794843 + a3a646b commit 2f5db3c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ protected void configure(HttpSecurity http) throws Exception {
.authorizeRequests()
.antMatchers("/api/v1/test/**").permitAll()
.antMatchers("/api/v1/teams/**").permitAll()
.antMatchers("/api/v1/application/schedule/**").permitAll()
.antMatchers("/api/v1/applications/schedule/**").permitAll()
.antMatchers("/api/v1/applicants/login").permitAll()
.anyRequest().hasAuthority(APPLICANT_ROLE_NAME);
http.cors().configurationSource(corsConfigurationSource());
Expand Down

0 comments on commit 2f5db3c

Please sign in to comment.