chore: Remove ToSecret
- Introduced in23addde28e
and removed in8cd46024fd
.
This commit is contained in:
parent
2d81bdbeb6
commit
5cc5c877a5
2 changed files with 0 additions and 21 deletions
|
@ -247,9 +247,6 @@ code.gitea.io/gitea/routers/web/org
|
||||||
code.gitea.io/gitea/services/context
|
code.gitea.io/gitea/services/context
|
||||||
GetPrivateContext
|
GetPrivateContext
|
||||||
|
|
||||||
code.gitea.io/gitea/services/convert
|
|
||||||
ToSecret
|
|
||||||
|
|
||||||
code.gitea.io/gitea/services/pull
|
code.gitea.io/gitea/services/pull
|
||||||
IsCommitStatusContextSuccess
|
IsCommitStatusContextSuccess
|
||||||
|
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
||||||
// SPDX-License-Identifier: MIT
|
|
||||||
|
|
||||||
package convert
|
|
||||||
|
|
||||||
import (
|
|
||||||
secret_model "code.gitea.io/gitea/models/secret"
|
|
||||||
api "code.gitea.io/gitea/modules/structs"
|
|
||||||
)
|
|
||||||
|
|
||||||
// ToSecret converts Secret to API format
|
|
||||||
func ToSecret(secret *secret_model.Secret) *api.Secret {
|
|
||||||
result := &api.Secret{
|
|
||||||
Name: secret.Name,
|
|
||||||
}
|
|
||||||
|
|
||||||
return result
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue