Dashboard user login

I want to create a multiple user logins and directing it to their own profile on the unique dashboard ! would like to know if that is possible on Node-RED if so how should that be done.

I think it is possible, you need to work with ui_control node, and develop you basic logic, for each user/password, for example:

if ( user/password == "user1/password1") then
show "x" group
hide "y" group
if ( user/password == "user2/password2") then
show "y" group
hide "x" group

For basic flow example that you could use to work with user/pass: Node-RED-Dashboard : Log-In, Session Management
For example to use ui_control node: Using the Control UI Node With Flow Example

I hope it can helps you!!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.