mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 10:50:37 -06:00
52c154a221
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
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"`
|
|
}
|