Hi, I'm developing a reactive web app with 2 module A and B, I created a module C to connect A and B.
For now I using login screen in module C to access to A and B, Its working but I got a problem is any time I open a screen directly in module A it took me back to the login screen of module A instead of module C.
What I want to do is even I open any screen directly in module A or B and require user login, it will go to the login screen of module C.
Do you know how to set the login screen of module C as default for all may app?
Hi @Bella Nguyen
In the On Initialize event of Module A and B login screens use redirect URL to redirect them to Module C login screen.
So always it will redirect it to Module C login screen.
Or else use Module C as the theme for both Module A and B and that will also help you to make Module C's login screen as default.
I hope it will help you.
Regards
Murali
Hi Murali,
Thank you for your solution, I use the URL for On Initialize event of Module A and it worked!
Thank for your help.
It's okay @Bella Nguyen .