Skip to content

Commit c6853db

Browse files
committed
fix: url 경로 수정
1 parent 66dd252 commit c6853db

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tuk-api/src/main/kotlin/nexters/tuk/ui/gathering/GatheringController.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import nexters.tuk.ui.resolver.Authenticated
1212
import org.springframework.web.bind.annotation.*
1313

1414
@RestController
15-
@RequestMapping("api/v1/gatherings")
15+
@RequestMapping("/api/v1/gatherings")
1616
class GatheringController(
1717
private val gatheringCommandService: GatheringCommandService,
1818
private val gatheringGenerateService: GatheringGenerateService,

tuk-api/src/main/kotlin/nexters/tuk/ui/onboarding/OnboardingController.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import nexters.tuk.ui.resolver.Authenticated
77
import org.springframework.web.bind.annotation.*
88

99
@RestController
10-
@RequestMapping("api/v1/onboarding")
10+
@RequestMapping("/api/v1/onboarding")
1111
class OnboardingController(
1212
private val onboardingService: OnboardingService
1313
) : OnboardingSpec {

tuk-api/src/main/kotlin/nexters/tuk/ui/tag/TagController.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import org.springframework.web.bind.annotation.RequestMapping
88
import org.springframework.web.bind.annotation.RestController
99

1010
@RestController
11-
@RequestMapping("api/v1/tags")
11+
@RequestMapping("/api/v1/tags")
1212
class TagController(
1313
private val tagService: TagService
1414
) : TagSpec {

0 commit comments

Comments
 (0)