diff options
author | KN4CK3R <admin@oldschoolhack.me> | 2023-02-01 13:53:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-01 20:53:04 +0800 |
commit | 5882e179a93a00a0635c6c578ec6d43ce68d687b (patch) | |
tree | e1bba3b2d88f74e95f05214bedebc616e2452805 /templates/user/settings/navbar.tmpl | |
parent | 9f9a1ce92292739c3d0b5ee4bb654d883eb3b869 (diff) | |
download | gitea-5882e179a93a00a0635c6c578ec6d43ce68d687b.tar.gz gitea-5882e179a93a00a0635c6c578ec6d43ce68d687b.zip |
Add user secrets (#22191)
Fixes #22183
Replaces #22187
This PR adds secrets for users. I refactored the files for organizations
and repos to use the same logic and templates. I splitted the secrets
from deploy keys again and reverted the fix from #22187.
---------
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to 'templates/user/settings/navbar.tmpl')
-rw-r--r-- | templates/user/settings/navbar.tmpl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/user/settings/navbar.tmpl b/templates/user/settings/navbar.tmpl index 8fd869dc40..8deffde0b2 100644 --- a/templates/user/settings/navbar.tmpl +++ b/templates/user/settings/navbar.tmpl @@ -18,6 +18,9 @@ <a class="{{if .PageIsSettingsKeys}}active {{end}}item" href="{{AppSubUrl}}/user/settings/keys"> {{.locale.Tr "settings.ssh_gpg_keys"}} </a> + <a class="{{if .PageIsSettingsSecrets}}active {{end}}item" href="{{AppSubUrl}}/user/settings/secrets"> + {{.locale.Tr "secrets.secrets"}} + </a> {{if .EnablePackages}} <a class="{{if .PageIsSettingsPackages}}active {{end}}item" href="{{AppSubUrl}}/user/settings/packages"> {{.locale.Tr "packages.title"}} |