We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac72824 commit 837312aCopy full SHA for 837312a
modules/setting/ui.go
@@ -139,6 +139,9 @@ func loadUIFrom(rootCfg ConfigProvider) {
139
UI.DefaultShowFullName = sec.Key("DEFAULT_SHOW_FULL_NAME").MustBool(false)
140
UI.SearchRepoDescription = sec.Key("SEARCH_REPO_DESCRIPTION").MustBool(true)
141
UI.UseServiceWorker = sec.Key("USE_SERVICE_WORKER").MustBool(false)
142
+
143
+ // OnlyShowRelevantRepos=false is important for many private/enterprise instances,
144
+ // because many private repositories do not have "description/topic", users just want to search by their names.
145
UI.OnlyShowRelevantRepos = sec.Key("ONLY_SHOW_RELEVANT_REPOS").MustBool(false)
146
147
UI.ReactionsLookup = make(container.Set[string])
0 commit comments