summaryrefslogtreecommitdiffstats
path: root/modules/structs/secret.go
blob: c707eb2278b2b1d2f11edaafd663fe69387fdf8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright 2023 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package structs

import "time"

// Secret represents a secret
// swagger:model
type Secret struct {
	// the secret's name
	Name string `json:"name"`
	// swagger:strfmt date-time
	Created time.Time `json:"created_at"`
}

// CreateSecretOption options when creating secret
// swagger:model
type CreateSecretOption struct {
	// Name of the secret to create
	//
	// required: true
	// unique: true
	Name string `json:"name" binding:"Required;AlphaDashDot;MaxSize(100)"`
	// Data of the secret to create
	Data string `json:"data" binding:"Required"`
}