Changes between Version 19 and Version 20 of UserOptInConsent


Ignore:
Timestamp:
Jun 15, 2018, 2:18:37 PM (6 years ago)
Author:
skwang
Comment:

Minor changes to RPC text

Legend:

Unmodified
Added
Removed
Modified
  • UserOptInConsent

    v19 v20  
    8888
    8989Additional parameters for `create_account.php` RPC are
    90 * `optin` = 0|1 - If true, sets the `consent_flag` to 1. If false the `consent_flag` is set to 0 and `consent_not_required` is set to 1. See discussion of anonymous accounts above.
     90* `consent_flag` = 0|1 - If true, sets the `consent_flag` to 1. If false the `consent_flag` is set to 0 and `consent_not_required` is set to 1. See discussion of anonymous accounts above.
    9191* `source` = 'string'
    9292  * example: 'client', see above discussion about `source` for more details.
     
    105105Example:
    106106{{{
    107 am_set_info.php?consent_name=ENROLL&consent_flag=1&consent_not_required=0&consent_source=accountmanager
     107am_set_info.php?account_key=ASDF&consent_name=ENROLL&consent_flag=1&consent_not_required=0&consent_source=accountmanager
    108108}}}
    109109
     
    114114The Web site account registration page will have a new panel that includes the terms of use text. This will be the same text file as [wiki:TermsOfUse]. The text file is processed with PHP's `nl2br()` function in order to format the plain text into text that is readable in HTML. Admins should **not** put HTML tags into the plain text [wiki:TermsOfUse] file. (In the future, we hope to make this HTML compatible.)
    115115
    116 The registration page will have an additional checkbox that requires a user opt-in to the terms of use. If this is not checked, the account will not be created, and an error shown to the user. Only when the checkbox is checked, will an account be created. A new record will be inserted into the `consent` table, in the same manner as the create_account RPC.
     116The registration page will have an additional checkbox that requires a user agree to the terms of use. If this is not checked, the account will not be created, and an error shown to the user. Only when the checkbox is checked, will an account be created. A new record will be inserted into the `consent` table, in the same manner as the create_account RPC.
    117117
    118118=== OPS pages ===