From 19ceac13039f3406bef0e75f8688a292dc3d6ed7 Mon Sep 17 00:00:00 2001 From: Mathis HERRIOT <197931332+0x485254@users.noreply.github.com> Date: Mon, 5 Jan 2026 14:14:51 +0100 Subject: [PATCH] feat: export additional schemas for RBAC, sessions, API keys, tags, content, reports, and audit logs --- backend/src/database/schemas/index.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/backend/src/database/schemas/index.ts b/backend/src/database/schemas/index.ts index 83131ec..ae8f998 100644 --- a/backend/src/database/schemas/index.ts +++ b/backend/src/database/schemas/index.ts @@ -1 +1,8 @@ -export * from './users'; \ No newline at end of file +export * from './users'; +export * from './rbac'; +export * from './sessions'; +export * from './api_keys'; +export * from './tags'; +export * from './content'; +export * from './reports'; +export * from './audit_logs'; \ No newline at end of file