...
- If you are in doubt if the user really needs to have permission check with someone who might know this person, or the partner relations team if they really need access.
- SSH to the EventR production server (eventr-prod.geant.org) and:
sudo su - eventr
cd /var/www/eventr-prod
RAILS_ENV=production rails c
- In the RAILS console, perform the query in the email, so:
User.find(xxx).update(roles: ["member"])
- After you add the user, make sure to send them a personalized email welcoming them to EventR and thanking them for helping us make the tool even better. It's all about the users, so we should be as forthcoming as possible as they are helping us to increase the quality of the data we have in EventR.
...