7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
|
|
import { Injectable } from '@nestjs/common';
|
|
import { AuthGuard } from '@nestjs/passport';
|
|
|
|
@Injectable()
|
|
export class LoginAuthGuard extends AuthGuard('login') { }
|