(
private jwtService: JwtService,
@Inject('PrismaClient') private prisma: PrismaClient,
)
| 6 | @Injectable() |
| 7 | export class AuthService { |
| 8 | constructor( |
| 9 | private jwtService: JwtService, |
| 10 | @Inject('PrismaClient') private prisma: PrismaClient, |
| 11 | ) {} |
| 12 | |
| 13 | async sendMagicLink(email: string) { |
| 14 | const token = this.jwtService.sign( |
nothing calls this directly
no outgoing calls
no test coverage detected