Skip to content

Commit

Permalink
Merge branch 'QB-52' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
phjppo0918 committed Dec 29, 2023
2 parents 19470b9 + 575f034 commit 9c1391c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/main/resources/templates/api-docs.html
Original file line number Diff line number Diff line change
Expand Up @@ -2069,15 +2069,15 @@ <h3 id="_http_request_17"><a class="link" href="#_http_request_17">HTTP request<
<tbody>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock"><code>title</code></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">제목 포함 내용</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">제목 포함 내용 (optional)</p></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock"><code>body</code></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">내용 포함 내용</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">내용 포함 내용 (optional)</p></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock"><code>writerNickname</code></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">작성자 포함 내용</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">작성자 포함 내용 (optional)</p></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock"><code>lectureCode</code></p></td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ class QuestionQueryCtrlTest : WebClientDocsTest() {
print(
"find-all-questions",
queryParameters(
parameterWithName("title").description("제목 포함 내용").optional(),
parameterWithName("body").description("내용 포함 내용").optional(),
parameterWithName("writerNickname").description("작성자 포함 내용").optional(),
parameterWithName("title").description("제목 포함 내용 (optional)").optional(),
parameterWithName("body").description("내용 포함 내용 (optional)").optional(),
parameterWithName("writerNickname").description("작성자 포함 내용 (optional)").optional(),
parameterWithName("lectureCode").description("강의 코드"),
parameterWithName("lectureDepart").description("강의 해당 학과 ID"),
parameterWithName("page").description("page 번호"),
Expand Down

0 comments on commit 9c1391c

Please sign in to comment.