Skip to content

Instantly share code, notes, and snippets.

@workfel
Created October 15, 2018 13:40
Show Gist options
  • Save workfel/a18d890184412dfb09ba40b157cb93b3 to your computer and use it in GitHub Desktop.
Save workfel/a18d890184412dfb09ba40b157cb93b3 to your computer and use it in GitHub Desktop.
nest auth
@Controller()
export class AuthController {
// The endpoint called from google after signin
@Get('google/callback')
public async googleCallback() {
}
@Get('google')
public async googleSignIn() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment