0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-01-09 12:15:24 +01:00

Add default wiki format setting value to struct

This commit is contained in:
Aly Sewelam 2025-11-26 11:53:34 +02:00
parent e2812ca259
commit 997ce9ffd1

View File

@ -48,6 +48,7 @@ var (
DisableMigrations bool
DisableStars bool `ini:"DISABLE_STARS"`
DefaultBranch string
DefaultWikiFormat string
AllowAdoptionOfUnadoptedRepositories bool
AllowDeleteOfUnadoptedRepositories bool
DisableDownloadSourceArchives bool
@ -172,6 +173,7 @@ var (
DisableMigrations: false,
DisableStars: false,
DefaultBranch: "main",
DefaultWikiFormat: "markdown",
AllowForkWithoutMaximumLimit: true,
StreamArchives: true,