From e120a12eaa50dd61cc72345aae8786eacb27874eeb8be94b48f8aac6f907fd03 Mon Sep 17 00:00:00 2001 From: aslan Date: Wed, 7 Jan 2026 17:23:18 -0500 Subject: [PATCH] Refactor part 2.1 --- src/controllers/role/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/role/types.ts b/src/controllers/role/types.ts index a9c2eab..7931ca5 100644 --- a/src/controllers/role/types.ts +++ b/src/controllers/role/types.ts @@ -5,8 +5,8 @@ interface IRole { id: string; name: string; description: string; - permissions: PERMISSION[]; communityId: string; + permissions: PERMISSION[]; creationDate: number; }