node-pt / src /modules /auth /local-auth.guard.ts
Abdul Rehman
first commit
ae1ae66
raw
history blame
163 Bytes
import { Injectable } from '@nestjs/common';
import { AuthGuard } from '@nestjs/passport';
@Injectable()
export class LocalAuthGuard extends AuthGuard('local') {}