refactor: 不要なデフォルト実装を削除

This commit is contained in:
usbharu 2023-11-05 14:50:06 +09:00
parent 117a97123c
commit 5bf7a1a25c
2 changed files with 2 additions and 4 deletions

View File

@ -1,6 +1,5 @@
package dev.usbharu.hideout.activitypub.interfaces.api.inbox package dev.usbharu.hideout.activitypub.interfaces.api.inbox
import org.springframework.http.HttpStatus
import org.springframework.http.ResponseEntity import org.springframework.http.ResponseEntity
import org.springframework.web.bind.annotation.RequestBody import org.springframework.web.bind.annotation.RequestBody
import org.springframework.web.bind.annotation.RequestMapping import org.springframework.web.bind.annotation.RequestMapping
@ -18,5 +17,5 @@ interface InboxController {
], ],
method = [RequestMethod.GET, RequestMethod.POST] method = [RequestMethod.GET, RequestMethod.POST]
) )
suspend fun inbox(@RequestBody string: String): ResponseEntity<Unit> = ResponseEntity(HttpStatus.ACCEPTED) suspend fun inbox(@RequestBody string: String): ResponseEntity<Unit>
} }

View File

@ -1,6 +1,5 @@
package dev.usbharu.hideout.activitypub.interfaces.api.outbox package dev.usbharu.hideout.activitypub.interfaces.api.outbox
import org.springframework.http.HttpStatus
import org.springframework.http.ResponseEntity import org.springframework.http.ResponseEntity
import org.springframework.web.bind.annotation.RequestBody import org.springframework.web.bind.annotation.RequestBody
import org.springframework.web.bind.annotation.RequestMapping import org.springframework.web.bind.annotation.RequestMapping
@ -10,5 +9,5 @@ import org.springframework.web.bind.annotation.RestController
@RestController @RestController
interface OutboxController { interface OutboxController {
@RequestMapping("/outbox", "/users/{username}/outbox", method = [RequestMethod.POST, RequestMethod.GET]) @RequestMapping("/outbox", "/users/{username}/outbox", method = [RequestMethod.POST, RequestMethod.GET])
suspend fun outbox(@RequestBody string: String): ResponseEntity<Unit> = ResponseEntity(HttpStatus.ACCEPTED) suspend fun outbox(@RequestBody string: String): ResponseEntity<Unit>
} }