Hey team I found even if I set `AUTH_OIDC_USER_NAM...
# troubleshoot
r
Hey team I found even if I set
AUTH_OIDC_USER_NAME_CLAIM_REGEX=([^@]+)
in the
frontend.env
file. But That env does not exist in the JVM.
e
Hey. OIDC is handled by frontend only! Is there some use case in mind to access OIDC in gms?
or are you referring to frontend jvm?
r
I am referring frontend jvm
I find the reason. I need to add
""
around the regex...
which means
AUTH_OIDC_USER_NAME_CLAIM_REGEX="([^@]+)"
e
ah awesome