Skip to content

Commit

Permalink
hotfix: pick mock data 추가를 위해 service 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
sangwonsheep committed Dec 10, 2024
1 parent deb4120 commit d784b44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class PickBulkService {
public void saveBulkPick(Long userId, Long parentFolderId) {
List<PickCommand.Create> pickList = new ArrayList<>();
for (int i = 0; i < 10000; i++) {
LinkInfo linkInfo = new LinkInfo(String.valueOf(i), "링크 제목", "링크 설명", "링크 이미지 url", null);
LinkInfo linkInfo = new LinkInfo("test" + i, "링크 제목", "링크 설명", "", null);
PickCommand.Create command = new PickCommand.Create(userId, "테스트 제목", new ArrayList<>(),
parentFolderId, linkInfo);
pickList.add(command);
Expand Down

0 comments on commit d784b44

Please sign in to comment.