Semaphore/models/accessKey.go
2016-04-18 01:58:29 +01:00

23 lines
538 B
Go

package models
import (
"strconv"
"github.com/ansible-semaphore/semaphore/util"
)
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"`
}
func (key AccessKey) GetPath() string {
return util.Config.TmpPath + "/access_key_" + strconv.Itoa(key.ID)
}