6 lines
162 B
TypeScript
6 lines
162 B
TypeScript
import { Injectable } from '@nestjs/common'
|
|
import { AuthGuard } from '@nestjs/passport'
|
|
|
|
@Injectable()
|
|
export class LocalAuthGuard extends AuthGuard('local') {}
|