Skip to content

Commit

Permalink
#125 - 피드 요청 설명글 필수값 제외
Browse files Browse the repository at this point in the history
#125 - 피드 요청 설명글 필수값 제외
  • Loading branch information
sasca37 authored Feb 25, 2024
2 parents 47e9c61 + a8bb6d7 commit f81fde5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-actions-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI & CD for dodal-dev

on:
push:
branches: [ "bug/#123" ]
branches: [ "feat/#125" ]


env:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class ChallengeFeedCreateRequest {
@Schema(description = "인증 이미지 url", example = "https://dodal-bucket.s3.ap-northeast-2.amazonaws.com")
private String certificationImgUrl;

@Size(min = 1, max = 100, message = "content는 1자 ~ 100자 사이여야 합니다.")
@Size(max = 100, message = "content는 100자 이내여야 합니다.")
@Schema(description = "인증설명 글", example = "인증합니다.")
private String content;
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class ChallengeFeedEntity extends BaseTime {
@Column(nullable = false, length = 255)
private String certImgUrl;

@Column(nullable = false, length = 100)
@Column(nullable = true, length = 100)
private String certContent;

@Column(nullable = false, length = 16)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ public class ChallengeRoomEntity extends BaseTime {
@Column(nullable = false, length = 16)
private String hostNickname;

@Column(nullable = false, length = 255)
private String hostProfileUrl;

@Column(nullable = false, length = 255)
Expand Down

0 comments on commit f81fde5

Please sign in to comment.