- πΊπΈUnited States sascher
We have run into this same problem on the project I am working on right now.
The workaround we have is to delete the users records from the database with drush.
If I had user with and ID of 666, then I would run these commands since there is no way yet to remove them thought the UI
drush sql-query 'DELETE FROM opigno_learning_path_achievements WHERE uid= '666''
drush sql-query 'DELETE FROM learning_path_result WHERE user_id= '666''
drush sql-query 'DELETE FROM opigno_latest_group_activity WHERE uid= '666''
drush sql-query 'DELETE FROM user_lp_status WHERE uid= '666''
drush sql-query 'DELETE FROM user_module_status WHERE user_id= '666''
drush sql-query 'DELETE FROM opigno_module_badges WHERE uid= '666''