The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/apps/meteor/server/lib/roles/addUserRoles.ts

23 lines
759 B

import type { IRole, IUser, IRoom } from '@rocket.chat/core-typings';
import { Users, Roles } from '@rocket.chat/models';
import { MeteorError } from '@rocket.chat/core-services';
import { validateRoleList } from './validateRoleList';
export const addUserRolesAsync = async (userId: IUser['_id'], roleIds: IRole['_id'][], scope?: IRoom['_id']): Promise<boolean> => {
if (!userId || !roleIds?.length) {
return false;
}
const user = await Users.findOneById(userId, { projection: { _id: 1 } });
if (!user) {
throw new MeteorError('error-invalid-user', 'Invalid user');
}
if (!(await validateRoleList(roleIds))) {
throw new MeteorError('error-invalid-role', 'Invalid role');
}
await Roles.addUserRoles(userId, roleIds, scope);
return true;
};