Email Login
You can start to register and login from here:
If you are in On premise mode an administrator needs to create an account for you.
You will then be able to change your password on your profile page.
Register​
First you need to register by indicating a valid e-mail, a name, a username and a password:
Activate your account​
After your registered, you need to activate your account (check your email (also your spams)).
Login​
Once your account is validated, you can login to the platform and start having fun!
You will receive a welcome notification by email. You can check all notifications available on Notifications page.
Configuration defaultRedirectPath​
Overview
defaultRedirectPath is an optional configuration key used to control where the user is redirected immediately after login.
This value is a simple string, and no validation is applied automatically. Because of this, it is important to ensure that the path is correctly set in every environment.
How It Works
After a successful login, the application checks whether defaultRedirectPath is defined.
If present, the user is redirected to that path.
If not, the system falls back to the default post-login page, which is /chat.
Important Behavior
Since the value is not validated, the application will redirect even if the path is:
- misspelled
- not registered in the router
- not available in the current environment
This may result in navigation errors or blank pages.
Example of a typo to avoid:
- Incorrect: /chaat
- Correct: /chat
Always make sure that the path:
- exists
- is reachable
- is spelled correctly