grafana/pkg/api/dtos/acl.go
Torkel Ödegaard 9c6c8c0f3f acl fixes
2017-06-22 17:10:43 -04:00

17 lines
399 B
Go

package dtos
import (
m "github.com/grafana/grafana/pkg/models"
)
type UpdateDashboardAclCommand struct {
Items []DashboardAclUpdateItem `json:"items"`
}
type DashboardAclUpdateItem struct {
UserId int64 `json:"userId"`
UserGroupId int64 `json:"userGroupId"`
Role *m.RoleType `json:"role,omitempty"`
Permission m.PermissionType `json:"permission"`
}