We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07e1e37 commit 6c54c42Copy full SHA for 6c54c42
bitgouel-api/src/main/kotlin/team/msg/domain/post/presentation/PostController.kt
@@ -18,7 +18,7 @@ class PostController(
18
private val postRequestMapper: PostRequestMapper
19
) {
20
@PostMapping
21
- fun createInformPost(@RequestBody @Valid webRequest: CreatePostWebRequest, @RequestParam(name = "type") FeedType: FeedType){
+ fun createPost(@RequestBody @Valid webRequest: CreatePostWebRequest, @RequestParam(name = "type") FeedType: FeedType){
22
val request = postRequestMapper.createPostWebRequestToDto(webRequest, FeedType)
23
postService.createPostService(request)
24
}
0 commit comments