diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2023-05-06 17:39:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-06 17:39:06 +0800 |
commit | e5a8ebc0ed2553a16bac4b54a74cc3e5e8036b32 (patch) | |
tree | c26686d3793d3908c9f55a11be242103ff1ea04b /templates/user | |
parent | 0ebabf3c6b12a0c3fe8f54398b4bb5a1d2cbeebf (diff) | |
download | gitea-e5a8ebc0ed2553a16bac4b54a74cc3e5e8036b32.tar.gz gitea-e5a8ebc0ed2553a16bac4b54a74cc3e5e8036b32.zip |
Require at least one unit to be enabled (#24189)
Don't remember why the previous decision that `Code` and `Release` are
non-disable units globally. Since now every unit include `Code` could be
disabled, maybe we should have a new rule that the repo should have at
least one unit. So any unit could be disabled.
Fixes #20960
Fixes #7525
---------
Co-authored-by: delvh <dev.lh@web.de>
Co-authored-by: yp05327 <576951401@qq.com>
Diffstat (limited to 'templates/user')
-rw-r--r-- | templates/user/profile.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/user/profile.tmpl b/templates/user/profile.tmpl index 5463270854..8d48474441 100644 --- a/templates/user/profile.tmpl +++ b/templates/user/profile.tmpl @@ -135,7 +135,7 @@ {{svg "octicon-package"}} {{.locale.Tr "packages.title"}} </a> {{end}} - {{if .IsRepoIndexerEnabled}} + {{if and (not $.UnitTypeCode.UnitGlobalDisabled) .IsRepoIndexerEnabled}} <a class='{{if eq .TabName "code"}}active {{end}}item' href="{{.ContextUser.HomeLink}}/-/code"> {{svg "octicon-code"}} {{.locale.Tr "user.code"}} </a> |