mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-13 12:41:21 +00:00
18 lines
431 B
Go
18 lines
431 B
Go
package permissions
|
|
|
|
import (
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/model"
|
|
"go.woodpecker-ci.org/woodpecker/v2/shared/utils"
|
|
)
|
|
|
|
func NewOwnersAllowlist(owners []string) *OwnersAllowlist {
|
|
return &OwnersAllowlist{owners: utils.SliceToBoolMap(owners)}
|
|
}
|
|
|
|
type OwnersAllowlist struct {
|
|
owners map[string]bool
|
|
}
|
|
|
|
func (o *OwnersAllowlist) IsAllowed(repo *model.Repo) bool {
|
|
return len(o.owners) < 1 || o.owners[repo.Owner]
|
|
}
|