Semaphore/db/AccessKey.go

25 lines
579 B
Go
Raw Normal View History

2017-02-23 06:12:16 +01:00
package db
2016-04-04 01:10:12 +02:00
import (
"strconv"
"github.com/ansible-semaphore/semaphore/util"
)
2016-04-04 01:10:12 +02:00
type AccessKey struct {
ID int `db:"id" json:"id"`
Name string `db:"name" json:"name" binding:"required"`
// 'aws/do/gcloud/ssh',
Type string `db:"type" json:"type" binding:"required"`
ProjectID *int `db:"project_id" json:"project_id"`
Key *string `db:"key" json:"key"`
Secret *string `db:"secret" json:"secret"`
Removed bool `db:"removed" json:"removed"`
2016-04-04 01:10:12 +02:00
}
func (key AccessKey) GetPath() string {
return util.Config.TmpPath + "/access_key_" + strconv.Itoa(key.ID)
}