Versions Compared

Key

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

Table of Contents
minLevel1
maxLevel7

Design

...

How it works

Sign up page composition

...

The purpose of the action should be to validate the email address entered and thus allow the administrators to approve the creation of the final account.

How to solve :

  1. Create a new step in the workflow of the userregistration object: unverified email

  2. Add a verify action from unverified email to inactive

  3. Inactive status must be published true

  4. Change the default status of userregistration to have the ID of unverified email

  5. Change the activated value of userregistration to 2

  6. Set the validate_email_workflow_action of the PACKAGED_RegistrationEmails to verify

In starter-kit, we have chosen not to go through the workflow to approve the creation of an account: by going through the workflow, it is not possible to send the user back to the account finally created. So we have a button that appears in the toolbar if enable_create_account_from_request is set to true. To keep your existing operation, you'll have to set this parameter to false (to not have the button)

...