From 07b36ee35b06fe98a76c659710e195b9b04bdd85 Mon Sep 17 00:00:00 2001 From: gidskql6671 Date: Wed, 29 May 2024 00:31:04 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A6=AC=ED=80=98=EC=8A=A4=ED=8A=B8=20?= =?UTF-8?q?=ED=83=80=EC=9E=85=20=EB=B2=84=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../knu/dong/onedayonebaek/github/dto/CommitWebhookRequest.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/back/src/main/kotlin/knu/dong/onedayonebaek/github/dto/CommitWebhookRequest.kt b/back/src/main/kotlin/knu/dong/onedayonebaek/github/dto/CommitWebhookRequest.kt index 02febb3..d885ee1 100644 --- a/back/src/main/kotlin/knu/dong/onedayonebaek/github/dto/CommitWebhookRequest.kt +++ b/back/src/main/kotlin/knu/dong/onedayonebaek/github/dto/CommitWebhookRequest.kt @@ -1,11 +1,11 @@ package knu.dong.onedayonebaek.github.dto -import java.time.LocalDateTime +import java.time.ZonedDateTime data class CommitWebhookRequest( val pusher: Pusher, val commits: List = ArrayList() ) { - data class Commit (val url: String, val message: String, val timestamp: LocalDateTime) + data class Commit (val url: String, val message: String, val timestamp: ZonedDateTime) data class Pusher (val name: String, val email: String) }