File size: 265 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import { Injectable } from "@nestjs/common";
import { PassportStrategy } from "@nestjs/passport";
import { Strategy } from "passport";

@Injectable()
export class DummyStrategy extends PassportStrategy(Strategy, "dummy") {
  authenticate() {
    this.fail();
  }
}