local-auth.guard.ts 164 B

12345
  1. import { Injectable } from '@nestjs/common';
  2. import { AuthGuard } from '@nestjs/passport';
  3. @Injectable()
  4. export class LocalAuthGuard extends AuthGuard('local') {}