grafana/pkg/api/dtos/acl.go
idafurjes f5cace8bbd
Rename Acl to ACL (#52342)
* Rename Acl to ACL

* Fix yaml files

* Add xorm tags and fix test
2022-07-18 15:14:58 +02:00

23 lines
516 B
Go

package dtos
import "github.com/grafana/grafana/pkg/models"
// swagger:model
type UpdateDashboardACLCommand struct {
Items []DashboardACLUpdateItem `json:"items"`
}
// swagger:model
type DashboardACLUpdateItem struct {
UserID int64 `json:"userId"`
TeamID int64 `json:"teamId"`
Role *models.RoleType `json:"role,omitempty"`
// Permission level
// Description:
// * `1` - View
// * `2` - Edit
// * `4` - Admin
// Enum: 1,2,4
Permission models.PermissionType `json:"permission"`
}