Developers Getting Started With i2b2
Space shortcuts
Space Tools

Versions Compared

Key

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

Table of Contents

i2b2 User Registration Guide

...

Modify the file i2b2_config_data.json that is located in the directory /var/www/html/webclient/ to enable option for user self-registration. Set the value of the attribute showRegistration to true and set the value of the attribute registrationMethod empty. More detailed instructions are here.

Again, replace 127.0.0.1:9090 with the address of your PM cell if it is not on the same machine as the webserver!

...

Note that the new user cannot sign in immediately after self-registering. An administrator has to add the new user to a project and add the project roles to the new user. Below is the error shown if the new user attempts to log in immediately after registering:

login no project error

Changing the terms and conditions

The content of the "Terms & Conditions" box in the registration tool can be changed by modifying the file /var/www/html/webclient/i2b2-js/i2b2_ui_config.js

Edit the termsCondition parameter:

Code Block
languagejs
i2b2.UI.cfg = {
    ...
    termsCondition: "Terms & Conditions\n\nDo not talk about i2b2. It is a secret."
};
...


Adding New User to a Project

...