fix: by default, allow reading other users

This commit is contained in:
Andy Burke 2025-07-25 20:11:32 -07:00
parent f2066310d4
commit f9dac1f038

View file

@ -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 = {};