Meteor.methods({ addRoomModerator(rid, userId) { check(rid, String); check(userId, String); if (!Meteor.userId()) { throw new Meteor.Error('error-invalid-user', 'Invalid user', { method: 'addRoomModerator', }); } if (!RocketChat.authz.hasPermission(Meteor.userId(), 'set-moderator', rid)) { throw new Meteor.Error('error-not-allowed', 'Not allowed', { method: 'addRoomModerator', }); } const user = RocketChat.models.Users.findOneById(userId); if (!user || !user.username) { throw new Meteor.Error('error-invalid-user', 'Invalid user', { method: 'addRoomModerator', }); } const subscription = RocketChat.models.Subscriptions.findOneByRoomIdAndUserId(rid, user._id); if (!subscription) { throw new Meteor.Error('error-user-not-in-room', 'User is not in this room', { method: 'addRoomModerator', }); } if (Array.isArray(subscription.roles) === true && subscription.roles.includes('moderator') === true) { throw new Meteor.Error('error-user-already-moderator', 'User is already a moderator', { method: 'addRoomModerator', }); } RocketChat.models.Subscriptions.addRoleById(subscription._id, 'moderator'); const fromUser = RocketChat.models.Users.findOneById(Meteor.userId()); RocketChat.models.Messages.createSubscriptionRoleAddedWithRoomIdAndUser(rid, user, { u: { _id: fromUser._id, username: fromUser.username, }, role: 'moderator', }); if (RocketChat.settings.get('UI_DisplayRoles')) { RocketChat.Notifications.notifyLogged('roles-change', { type: 'added', _id: 'moderator', u: { _id: user._id, username: user.username, name: fromUser.name, }, scope: rid, }); } return true; }, });