mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-05 00:19:47 +00:00
20 lines
380 B
Go
20 lines
380 B
Go
package server
|
|
|
|
import (
|
|
"github.com/drone/drone/pkg/types"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// GET /api/agents/token
|
|
func GetAgentToken(c *gin.Context) {
|
|
sess := ToSession(c)
|
|
token := &types.Token{}
|
|
token.Kind = types.TokenAgent
|
|
token.Label = "drone-agent"
|
|
tokenstr, err := sess.GenerateToken(token)
|
|
if err != nil {
|
|
c.Fail(500, err)
|
|
} else {
|
|
c.JSON(200, tokenstr)
|
|
}
|
|
}
|