Files
portainer/api/database/models/authorizations.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
235 B
Go

package models
type (
// Authorization represents an authorization associated to an operation
Authorization string
// Authorizations represents a set of authorizations associated to a role
Authorizations map[Authorization]bool
)