From 25329c4877d6bcfde9f1f740b926f661f0f08a1c Mon Sep 17 00:00:00 2001 From: Chanyeong Lim Date: Thu, 7 Nov 2024 20:22:07 +0900 Subject: [PATCH] =?UTF-8?q?token=EC=97=90=20fb=5Ftoken=20JsonAlias?= =?UTF-8?q?=EB=A1=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/src/main/kotlin/users/dto/SocialLoginRequest.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/src/main/kotlin/users/dto/SocialLoginRequest.kt b/core/src/main/kotlin/users/dto/SocialLoginRequest.kt index 2c3c62ce..8a4d2606 100644 --- a/core/src/main/kotlin/users/dto/SocialLoginRequest.kt +++ b/core/src/main/kotlin/users/dto/SocialLoginRequest.kt @@ -1,5 +1,8 @@ package com.wafflestudio.snu4t.users.dto +import com.fasterxml.jackson.annotation.JsonAlias + data class SocialLoginRequest( + @JsonAlias("fb_token") val token: String, )