teableio/teable

View on GitHub
apps/nestjs-backend/src/features/auth/guard/google.guard.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Injectable } from '@nestjs/common';
import { AuthGuard } from '@nestjs/passport';

@Injectable()
export class GoogleGuard extends AuthGuard('google') {}