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/packages/rocketchat-lib/server/methods/setAdminStatus.coffee

18 lines
669 B

Meteor.methods
setAdminStatus: (userId, admin) ->
check userId, String
check admin, Match.Optional(Boolean)
if not Meteor.userId()
throw new Meteor.Error 'error-invalid-user', "Invalid user", { method: 'setAdminStatus' }
unless RocketChat.authz.hasPermission( Meteor.userId(), 'assign-admin-role') is true
throw new Meteor.Error 'error-not-allowed', "Not allowed", { method: 'setAdminStatus' }
user = Meteor.users.findOne({ _id: userId }, { fields: { username: 1 } })
if admin
return Meteor.call('authorization:addUserToRole', 'admin', user.username);
else
return Meteor.call('authorization:removeUserFromRole', 'admin', user.username);