mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 08:35:43 -06:00
15 lines
403 B
Go
15 lines
403 B
Go
package dtos
|
|
|
|
import "github.com/grafana/grafana/pkg/models"
|
|
|
|
type UpdateDashboardAclCommand struct {
|
|
Items []DashboardAclUpdateItem `json:"items"`
|
|
}
|
|
|
|
type DashboardAclUpdateItem struct {
|
|
UserId int64 `json:"userId"`
|
|
TeamId int64 `json:"teamId"`
|
|
Role *models.RoleType `json:"role,omitempty"`
|
|
Permission models.PermissionType `json:"permission"`
|
|
}
|