Question about router and auth in umbrella apps -

I have an umbrella app and inside I have, we use ueberauth_google:

  • A core app for data processing and our bank
  • Auth_app for authorization and authentication (generates administration flow for other apps and login / logout): 4002
  • Phoenix_app_1: 4000
  • Phoenix_app_2: 4001

How can I generate a user that when logged into auth_app can choose to go to Phoenix_app_1 and it will be sent already logged in? An important question, how i will set in my auth_web router?
Case: What is benefit of having multiple phoenix endpoints

Not on my machine right know but I’d think if both your Phoenix apps share the same cookie name and secret key, you should get what you want?

These options are in the config files of your apps.