Skip to content

Instantly share code, notes, and snippets.

View gandresto's full-sized avatar
🏠
Working from home

Andres Gonzalez gandresto

🏠
Working from home
  • Globant
  • Mexico
View GitHub Profile
@andreacioni
andreacioni / app.controller-1.ts
Last active February 4, 2025 14:27
NestJS Authentication: Single Sign On with SAML 2.0
@Get('api/auth/sso/saml/login')
@UseGuards(SamlAuthGuard)
async samlLogin() {
//this route is handled by passport-saml
return;
}