diff options
author | Unknwon <u@gogs.io> | 2017-03-24 16:25:40 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2017-03-24 16:25:40 -0400 |
commit | 8196430f47842fba4f227b105cd96d4b981d077d (patch) | |
tree | a7301f793cd341564edeb75425c21249b4b39035 /modules/form/repo.go | |
parent | 7a99e56893d00632a18d7aa030028eca28a96e3e (diff) |
repo: allow private repository to have public wiki or issues
Relates to #649 and #2157
Diffstat (limited to 'modules/form/repo.go')
-rw-r--r-- | modules/form/repo.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/form/repo.go b/modules/form/repo.go index 53486989..4c01d3f8 100644 --- a/modules/form/repo.go +++ b/modules/form/repo.go @@ -92,9 +92,11 @@ type RepoSetting struct { // Advanced settings EnableWiki bool + AllowPublicWiki bool EnableExternalWiki bool ExternalWikiURL string EnableIssues bool + AllowPublicIssues bool EnableExternalTracker bool ExternalTrackerURL string TrackerURLFormat string |