From 1ea20ab4c03606f9aa439c99b9ad503ead86b0a3 Mon Sep 17 00:00:00 2001 From: 4mjeo <4mj.eo@dsm.hs.kr> Date: Sat, 9 Mar 2024 17:07:47 +0900 Subject: [PATCH] update :: update default url --- .../infrastructure/user/presentation/UserController.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/com/example/v1oauthauthorizationservice/infrastructure/user/presentation/UserController.kt b/src/main/kotlin/com/example/v1oauthauthorizationservice/infrastructure/user/presentation/UserController.kt index d1b6660..d7274c1 100644 --- a/src/main/kotlin/com/example/v1oauthauthorizationservice/infrastructure/user/presentation/UserController.kt +++ b/src/main/kotlin/com/example/v1oauthauthorizationservice/infrastructure/user/presentation/UserController.kt @@ -14,7 +14,7 @@ import org.springframework.web.bind.annotation.* @Validated @RestController -@RequestMapping("/user") +@RequestMapping("/oauth2/user") class UserController( private val userService: UserService ) {