Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ErrSecretInvalidValue ¶
func (ErrSecretInvalidValue) Error ¶
func (err ErrSecretInvalidValue) Error() string
func (ErrSecretInvalidValue) Unwrap ¶
func (err ErrSecretInvalidValue) Unwrap() error
type FindSecretsOptions ¶
type FindSecretsOptions struct {
db.ListOptions
OwnerID int64
RepoID int64
}
type Secret ¶
type Secret struct {
ID int64
OwnerID int64 `xorm:"INDEX UNIQUE(owner_repo_name) NOT NULL"`
RepoID int64 `xorm:"INDEX UNIQUE(owner_repo_name) NOT NULL DEFAULT 0"`
Name string `xorm:"UNIQUE(owner_repo_name) NOT NULL"`
Data string `xorm:"LONGTEXT"` // encrypted data
CreatedUnix timeutil.TimeStamp `xorm:"created NOT NULL"`
}
Secret represents a secret
func FindSecrets ¶
func FindSecrets(ctx context.Context, opts FindSecretsOptions) ([]*Secret, error)
Click to show internal directories.
Click to hide internal directories.