Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
리팩토링
Browse files Browse the repository at this point in the history
  • Loading branch information
ori0o0p committed Mar 10, 2024
1 parent 2ed9f1a commit b83d514
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,7 @@ private DefaultDocument createDocument(User user) {
return createDocumentFacade.execute(SaveDocumentRequest.builder()
.title(user.getName())
.type("student")
.content(Content.builder()
.index("1")
.title("개요")
.detail("회원가입을 통해 자동 생성된 문서입니다.")
.build())
.content(Content.create("1", "개요", "회원가입을 통해 자동 생성된 문서입니다."))
.groups(groups)
.build(), user);
}
Expand Down

0 comments on commit b83d514

Please sign in to comment.