Files
portainer/api/database/models/accessPolicy.go
T
Prabhat Khera 41b800f053
Test / test-client (push) Has been cancelled
WIP: settings models
2022-10-17 10:18:31 +13:00

10 lines
259 B
Go

package models
type (
// AccessPolicy represent a policy that can be associated to a user or team
AccessPolicy struct {
// Role identifier. Reference the role that will be associated to this access policy
RoleID RoleID `json:"RoleId" example:"1"`
}
)