From d9d8fad23054fd6d0e45da5929c7dc6aa13a39d4 Mon Sep 17 00:00:00 2001 From: Manuel Date: Sat, 26 Aug 2017 15:57:41 +0200 Subject: Add UseCompatSSHURI setting (#2356) * Add UseCompatSSHURI setting Signed-off-by: Manuel Kroeber (+1 squashed commits) Squashed commits: [dda2dc79] Add ForceCloneSSHURL setting Signed-off-by: Manuel Kroeber * Make protocol if construct more readable Signed-off-by: Manuel Kroeber --- modules/setting/setting.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'modules/setting') diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 8cd9fa6086..c25c2e0c65 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -161,6 +161,7 @@ var ( PullRequestQueueLength int PreferredLicenses []string DisableHTTPGit bool + UseCompatSSHURI bool // Repository editor settings Editor struct { @@ -189,6 +190,7 @@ var ( PullRequestQueueLength: 1000, PreferredLicenses: []string{"Apache License 2.0,MIT License"}, DisableHTTPGit: false, + UseCompatSSHURI: false, // Repository editor settings Editor: struct { @@ -903,6 +905,7 @@ func NewContext() { // Determine and create root git repository path. sec = Cfg.Section("repository") Repository.DisableHTTPGit = sec.Key("DISABLE_HTTP_GIT").MustBool() + Repository.UseCompatSSHURI = sec.Key("USE_COMPAT_SSH_URI").MustBool() Repository.MaxCreationLimit = sec.Key("MAX_CREATION_LIMIT").MustInt(-1) RepoRootPath = sec.Key("ROOT").MustString(path.Join(homeDir, "gitea-repositories")) forcePathSeparator(RepoRootPath) -- cgit v1.2.3