feat access CRUD pages
This commit is contained in:
No files matched your search
@@ -4,9 +4,17 @@ export interface MenuItem {
|
||||
title?: string
|
||||
icon?: string
|
||||
to?: string
|
||||
access? : AccessItem[] | null
|
||||
children?: MenuItem[] | null
|
||||
}
|
||||
|
||||
export interface AccessItem {
|
||||
create?: boolean
|
||||
read?: boolean
|
||||
update?: boolean
|
||||
delete?: boolean
|
||||
}
|
||||
|
||||
export interface MenuGroup {
|
||||
id: string
|
||||
header: string
|
||||
|
||||
Reference in New Issue
Block a user