Skip to content

Commit

Permalink
๐Ÿ“ :: not blank
Browse files Browse the repository at this point in the history
  • Loading branch information
gurdl0525 committed Nov 21, 2023
1 parent 9f65f7f commit 7be953c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class AuthController(
@PostMapping("/device")
fun applyDevieceToken(
@RequestParam(name = "token", required = true)
@Valid @NotBlank
token: String
) { authService.applyDeviceToken(token) }
@Valid @NotBlank(message = "null์ผ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค.")
token: String?
) { authService.applyDeviceToken(token!!) }
}

0 comments on commit 7be953c

Please sign in to comment.