Skip to content

Commit

Permalink
[Fix]: LocalDateTime Response 포맷터 변경(12시간제 -> 24시간제) (#22)
Browse files Browse the repository at this point in the history
* fix: LocalDateTime Response 포맷터 변경(12시간제 -> 24시간제)

* chore: PRD github actions 파일 name 오타 수정
  • Loading branch information
jihwan2da authored Feb 21, 2024
1 parent 12642a3 commit f3e435e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/DeployOnSTG.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy on STG Server (Amazon ECS)
name: Deploy on PRD Server (Amazon ECS)

on:
pull_request:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ import java.time.LocalDateTime
import java.time.format.DateTimeFormatter.*

fun LocalDateTime.toResponse(): String =
this.format(ofPattern("yyyy-MM-dd hh:mm"))
this.format(ofPattern("yyyy-MM-dd HH:mm"))
.replace(" ", "T")

0 comments on commit f3e435e

Please sign in to comment.