mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-18 07:54:28 +00:00
21 lines
342 B
Go
21 lines
342 B
Go
package session
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func MustTeamAdmin() gin.HandlerFunc {
|
|
return func(c *gin.Context) {
|
|
user := User(c)
|
|
switch {
|
|
case user == nil:
|
|
c.String(401, "User not authorized")
|
|
c.Abort()
|
|
case user.Admin == false:
|
|
c.String(413, "User not authorized")
|
|
c.Abort()
|
|
default:
|
|
c.Next()
|
|
}
|
|
}
|
|
}
|