From 033a853b51fec749b4b737a12d33c2d0cd1e802a Mon Sep 17 00:00:00 2001 From: Sepehr Yahyaee Date: Sat, 4 Jul 2026 12:54:47 +0330 Subject: [PATCH] Adding file makers and file reviewers to global roles --- src/auth/guards/global.guard.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/auth/guards/global.guard.ts b/src/auth/guards/global.guard.ts index b709d37..bed0053 100644 --- a/src/auth/guards/global.guard.ts +++ b/src/auth/guards/global.guard.ts @@ -12,6 +12,8 @@ const GLOBAL_GUARD_ROLES = new Set([ RoleEnum.USER, RoleEnum.FIELD_EXPERT, RoleEnum.REGISTRAR, + RoleEnum.FILE_MAKER, + RoleEnum.FILE_REVIEWER ]); @Injectable()