local-auth.guard.ts 165 Bytes Raw Blame History Permalink 1 2 3 4 5 import { Injectable } from '@nestjs/common'; import { AuthGuard } from '@nestjs/passport'; @Injectable() export class LocalAuthGuard extends AuthGuard('local') { }