project-knedita/src/auth/local-auth.guard.ts

6 lines
164 B
TypeScript
Raw Normal View History

import { Injectable } from "@nestjs/common";
import { AuthGuard } from "@nestjs/passport";
@Injectable()
export class LocalAuthGuard extends AuthGuard("local") {}