From f9dac1f038b2e41bfd3b4875078eb6e6b5acc37a Mon Sep 17 00:00:00 2001 From: Andy Burke Date: Fri, 25 Jul 2025 20:11:32 -0700 Subject: [PATCH] fix: by default, allow reading other users --- public/api/users/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/api/users/index.ts b/public/api/users/index.ts index a367162..56f3256 100644 --- a/public/api/users/index.ts +++ b/public/api/users/index.ts @@ -12,7 +12,8 @@ import * as bcrypt from '@da/bcrypt'; const DEFAULT_USER_PERMISSIONS: string[] = [ 'self.read', 'self.write', - 'rooms.read' + 'rooms.read', + 'users.read' ]; export const PRECHECKS: PRECHECK_TABLE = {};