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