forked from openedx/edx-platform
-
Notifications
You must be signed in to change notification settings - Fork 1
Automation of Identity Verification Process
Hassan Tariq edited this page Mar 12, 2020
·
1 revision
-
AUTOMATIC_PERMANENT_ACCOUNT_VERIFICATION:
This flag can be used to automate the identity verification process. It will create a ManualVerification object with a maximum possible expiration period for every user that will register after enabling this flag.
Add the following changes in environment file of lms (lms.env.json) located at
/edx/app/edxapp/edx-platform
directory. -
Add
AUTOMATIC_PERMANENT_ACCOUNT_VERIFICATION
flag underFEATURES
:
"FEATURES":
{
...
"AUTOMATIC_PERMANENT_ACCOUNT_VERIFICATION": true,
...
}
To verify all existing users following command can be used:
$ make lms-shell
$ ./manage.py verify_all_users
``