Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To remove a user from the Users list, click on the red circle "delete" icon next to that user. 

Recovering a User (Pre 6.0 Only)

If you remove a user from ProVision, the user is in a disabled state - not actually removed. This is done to facilitate logging integrity and is not an issue in ProVision 6.0 and above. To recover the user, please the following command:

Code Block
UPDATE `auth` SET `enabled` = '1' WHERE `username` = 'user@email.com';

Please replace user@email.com with the username of the user of that you are attempting to re-enable in ProVision.

If you wish to recover ALL users marked disabled, you can use the following command:

Code Block
UPDATE `auth` SET `enabled` = '1';

Groups

ProVision administrators can also create permission groups to assign users to. This allows more control over user roles.

...