Files
yudao-ui-admin-vben/apps/backend-mock/src/core/guard/local-auth.guard.ts

6 lines
164 B
TypeScript
Raw Normal View History

2024-06-30 14:09:44 +08:00
import { Injectable } from '@nestjs/common';
import { AuthGuard } from '@nestjs/passport';
@Injectable()
export class LocalAuthGuard extends AuthGuard('local') {}