Skip to content

Commit

Permalink
set saveInBuild to true by default
Browse files Browse the repository at this point in the history
  • Loading branch information
tabilzad committed Aug 20, 2024
1 parent 9c2317d commit 67494fe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ open class DocumentationOptions(

open class PluginOptions(
var enabled: Boolean = true,
var saveInBuild: Boolean = false,
var saveInBuild: Boolean = true,
var filePath: String? = null,
var format: String = "json"
)

open class KtorDocsExtension(
var documentation: DocumentationOptions = DocumentationOptions(),
var pluginOptions: PluginOptions = PluginOptions(),
)
)

0 comments on commit 67494fe

Please sign in to comment.