From 660593021056da6dad5841f3d8cdbe06ba3bd24d Mon Sep 17 00:00:00 2001 From: huuuunee Date: Wed, 10 Jul 2024 00:20:53 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20verity=20->=20verify=EB=A1=9C=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/kotlin/team/msg/sms/global/security/SecurityConfig.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sms-infrastructure/src/main/kotlin/team/msg/sms/global/security/SecurityConfig.kt b/sms-infrastructure/src/main/kotlin/team/msg/sms/global/security/SecurityConfig.kt index c4f8a781..80dd2db4 100644 --- a/sms-infrastructure/src/main/kotlin/team/msg/sms/global/security/SecurityConfig.kt +++ b/sms-infrastructure/src/main/kotlin/team/msg/sms/global/security/SecurityConfig.kt @@ -49,7 +49,7 @@ class SecurityConfig( .antMatchers(HttpMethod.GET, "/health").permitAll() // Auth - .antMatchers(HttpMethod.GET, "/auth/verity/access").authenticated() + .antMatchers(HttpMethod.GET, "/auth/verify/access").authenticated() .antMatchers(HttpMethod.POST, "/auth").permitAll() .antMatchers(HttpMethod.PATCH, "/auth").permitAll() .antMatchers(HttpMethod.DELETE, "/auth").authenticated()