Skip to content

Commit

Permalink
merge #291: 게시글 생성 시 테마, 누구랑 태그의 3개 개수 제한 폐지
Browse files Browse the repository at this point in the history
[refactor] 게시글 생성 시 테마, 누구랑 태그의 3개 개수 제한 폐지
  • Loading branch information
yaongmeow authored Dec 7, 2023
2 parents aed698d + 660b4a9 commit c9ec80b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions BE/src/postings/dto/create-posting.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import {
MaxLength,
IsOptional,
IsIn,
ArrayMaxSize,
IsArray,
IsISO8601,
} from 'class-validator';
Expand Down Expand Up @@ -68,7 +67,6 @@ export class CreatePostingDto {
})
@IsOptional()
@IsString({ each: true })
@ArrayMaxSize(3)
@IsArray()
@IsIn(themes, { each: true })
theme: Theme[];
Expand All @@ -82,7 +80,6 @@ export class CreatePostingDto {
})
@IsOptional()
@IsString({ each: true })
@ArrayMaxSize(3)
@IsArray()
@IsIn(withWhos, { each: true })
withWho: WithWho[];
Expand Down

0 comments on commit c9ec80b

Please sign in to comment.