nextjs-boilerplate-advanced icon indicating copy to clipboard operation
nextjs-boilerplate-advanced copied to clipboard

Filter menu items by permission

Open santospatrick opened this issue 1 year ago • 0 comments

Is your feature request related to a problem? Please describe. Filter menu items based on user profiles.

Describe the solution you'd like Create an attribute in menu items to set which profiles can/cannot see:

export const menu: MenuItem[] = [
  {
    icon: MdDashboard,
    text: "Dashboard",
    href: "/",
    profiles: ["ADMIN"] // <=====
  },
  // ...
]

Describe alternatives you've considered No.

Additional context No.

santospatrick avatar Sep 03 '22 17:09 santospatrick