feat(rbac): role-based access control module (#14310)

This commit is contained in:
Carlos R. L. Rodrigues
2026-01-07 05:36:39 -03:00
committed by GitHub
parent d6d7d14a6a
commit 1bfde8dc57
74 changed files with 4186 additions and 3 deletions

View File

@@ -0,0 +1,6 @@
import { defineMikroOrmCliConfig } from "@medusajs/framework/utils"
import * as entities from "./src/models"
export default defineMikroOrmCliConfig("rbac", {
entities: Object.values(entities),
})