mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Dashboard acl query fixes (#10909)
* initial fixes for dashboard permission acl list query, fixes #10864 * permissions: refactoring of acl api and query
This commit is contained in:
@@ -1,9 +1,8 @@
|
||||
import { types } from 'mobx-state-tree';
|
||||
import { types } from 'mobx-state-tree';
|
||||
|
||||
export const PermissionsStoreItem = types
|
||||
.model('PermissionsStoreItem', {
|
||||
dashboardId: types.optional(types.number, -1),
|
||||
id: types.maybe(types.number),
|
||||
permission: types.number,
|
||||
permissionName: types.maybe(types.string),
|
||||
role: types.maybe(types.string),
|
||||
|
Reference in New Issue
Block a user