Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,19 @@ openapi3 {
tasks.named('asciidoctor') {
inputs.dir snippetsDir
dependsOn test
attributes(
'snippetsDir': file('build/generated-snippets'),
'source-highlighter': 'highlightjs',
'toc': 'left',
'icons': 'font'
)
baseDirFollowsSourceFile()
}

tasks.register('copyDocument', Copy){
dependsOn tasks.named('asciidoctor')
delete file('src/main/resources/static/docs/index.html')
from file("build/docs/asciidoc")
from file("build/docs/asciidoc/index.html")
into file("src/main/resources/static/docs")
}

Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/docs/asciidoc/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ Content-Type: application/json

= **회원**

include::user.adoc[]
include::user-api.adoc[]

= **인증/인가**

include::auth.adoc[]
include::auth-api.adoc[]
File renamed without changes.