mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
feat: debug added log points for entra failing saml
This commit is contained in:
@@ -103,6 +103,13 @@ export const registerSamlRouter = async (server: FastifyZodProvider) => {
|
||||
const email = profile?.email ?? (profile?.emailAddress as string); // emailRippling is added because in Rippling the field `email` reserved
|
||||
|
||||
if (!email || !profile.firstName) {
|
||||
logger.info(
|
||||
{
|
||||
err: new Error("Invalid saml request. Missing email or first name"),
|
||||
profile
|
||||
},
|
||||
`email: ${email} firstName: ${profile.firstName as string}`
|
||||
);
|
||||
throw new BadRequestError({ message: "Invalid request. Missing email or first name" });
|
||||
}
|
||||
|
||||
|
||||
@@ -7,4 +7,4 @@ scripts/initialize-standalone-build.sh
|
||||
|
||||
cd ../
|
||||
|
||||
exec node dist/main.mjs
|
||||
exec node --enable-source-maps dist/main.mjs
|
||||
|
||||
Reference in New Issue
Block a user