mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 15:19:09 +01:00
5882e179a9
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>
48 lines
1,008 B
Go
48 lines
1,008 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package org
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
"code.gitea.io/gitea/modules/context"
|
|
shared "code.gitea.io/gitea/routers/web/shared/secrets"
|
|
)
|
|
|
|
const (
|
|
tplSettingsSecrets base.TplName = "org/settings/secrets"
|
|
)
|
|
|
|
// Secrets render organization secrets page
|
|
func Secrets(ctx *context.Context) {
|
|
ctx.Data["Title"] = ctx.Tr("secrets.secrets")
|
|
ctx.Data["PageIsOrgSettings"] = true
|
|
ctx.Data["PageIsOrgSettingsSecrets"] = true
|
|
|
|
shared.SetSecretsContext(ctx, ctx.ContextUser.ID, 0)
|
|
if ctx.Written() {
|
|
return
|
|
}
|
|
|
|
ctx.HTML(http.StatusOK, tplSettingsSecrets)
|
|
}
|
|
|
|
// SecretsPost add secrets
|
|
func SecretsPost(ctx *context.Context) {
|
|
shared.PerformSecretsPost(
|
|
ctx,
|
|
ctx.ContextUser.ID,
|
|
0,
|
|
ctx.Org.OrgLink+"/settings/secrets",
|
|
)
|
|
}
|
|
|
|
// SecretsDelete delete secrets
|
|
func SecretsDelete(ctx *context.Context) {
|
|
shared.PerformSecretsDelete(
|
|
ctx,
|
|
ctx.Org.OrgLink+"/settings/secrets",
|
|
)
|
|
}
|