Skip to content

Commit

Permalink
[CHORE] SiginInRepsonseDTO response body 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
unanchoi committed Aug 10, 2023
1 parent 14bf1f7 commit 92470e1
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
package com.smeme.server.dto.auth;


import com.smeme.server.dto.badge.BadgeResponseDTO;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Builder;

import java.util.List;

@Builder
public record SignInResponseDTO(
Expand All @@ -14,10 +12,8 @@ public record SignInResponseDTO(
@Schema(description = "smeme refresh token", example = "eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ0ZXN0IiwiaWF0IjoxNjIyMjU0NjY4LCJleHAiO")
String refreshToken,

@Schema(description = "회원 등록 여부", example = "true")
boolean isRegistered,

List<BadgeResponseDTO> badges
@Schema(description = "회원 정보 등록 여부", example = "true")
boolean isRegistered
) {

}

0 comments on commit 92470e1

Please sign in to comment.