Skip to content

Commit 6c54c42

Browse files
committed
update :: controller 함수명 변경
1 parent 07e1e37 commit 6c54c42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bitgouel-api/src/main/kotlin/team/msg/domain/post/presentation/PostController.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class PostController(
1818
private val postRequestMapper: PostRequestMapper
1919
) {
2020
@PostMapping
21-
fun createInformPost(@RequestBody @Valid webRequest: CreatePostWebRequest, @RequestParam(name = "type") FeedType: FeedType){
21+
fun createPost(@RequestBody @Valid webRequest: CreatePostWebRequest, @RequestParam(name = "type") FeedType: FeedType){
2222
val request = postRequestMapper.createPostWebRequestToDto(webRequest, FeedType)
2323
postService.createPostService(request)
2424
}

0 commit comments

Comments
 (0)