- I need to activate user that was created through mysql query in auth_user table insertion.
- I need to activate the user without using any api / email / from manual activation.
How can I achieve this ?
How can I achieve this ?
Hello @rahul.bhaskar
You can activate the user vía SQL, you can use the following command using your openedx database.
update auth_user set is_active=1 where username='yourusername';
I have done in this way only now.