Skip to content

Commit

Permalink
♻️ refactor : swagger docs에 필수가 아닌 값 표시하게 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jinddings committed Nov 12, 2024
1 parent 94364bb commit 2d1ba00
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions BE/src/auth/dto/auth-credentials.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,15 @@ export class AuthCredentialsDto {

@ApiProperty({
description: '카카오 ID',
required: false,
})
@IsString()
@IsOptional()
kakaoId?: string;

@ApiProperty({
description: '카카오 액세스 토큰',
required: false,
})
@IsString()
@IsOptional()
Expand Down

0 comments on commit 2d1ba00

Please sign in to comment.