Skip to content

Commit

Permalink
📝 ::
Browse files Browse the repository at this point in the history
  • Loading branch information
gurdl0525 committed Nov 21, 2023
1 parent 95ace0f commit ab4dd9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,9 @@ class AuthController(
.compact()

@DeleteMapping
fun signOut() {
authService.signOut()
}
fun signOut() { authService.signOut() }

@PostMapping("/deviece")
@PostMapping("/device")
fun applyDevieceToken(
@RequestParam(name = "token", required = true)
token: String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ interface AuthService {
fun reissue(refreshToken: String): TokenResponse

fun signOut()
@Transactional

fun applyDeviceToken(token: String)
}

0 comments on commit ab4dd9f

Please sign in to comment.