7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
|
|
import { Injectable } from '@nestjs/common';
|
|
import { AuthGuard } from '@nestjs/passport';
|
|
|
|
@Injectable()
|
|
export class JwtRefreshGuard extends AuthGuard('jwt-refresh') { }
|