Skip to content

Commit

Permalink
fix: PostReissueTokenRequest dto 필드명이 스네이크 케이스를 사용하도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jaeuk520 authored Oct 14, 2024
1 parent effb4fa commit 487e0c2
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.ku.covigator.dto.request;

import com.fasterxml.jackson.databind.PropertyNamingStrategies;
import com.fasterxml.jackson.databind.annotation.JsonNaming;
import jakarta.validation.constraints.NotNull;

@JsonNaming(PropertyNamingStrategies.SnakeCaseStrategy.class)
public record PostReissueTokenRequest(

@NotNull(message = "NULL일 수 없습니다.") String refreshToken) {
}

0 comments on commit 487e0c2

Please sign in to comment.