File size: 160 Bytes
1e92f2d |
1 2 3 4 5 6 |
import { Injectable } from "@nestjs/common";
import { AuthGuard } from "@nestjs/passport";
@Injectable()
export class LocalGuard extends AuthGuard("local") {}
|
1e92f2d |
1 2 3 4 5 6 |
import { Injectable } from "@nestjs/common";
import { AuthGuard } from "@nestjs/passport";
@Injectable()
export class LocalGuard extends AuthGuard("local") {}
|