nestjs-firebase-auth icon indicating copy to clipboard operation
nestjs-firebase-auth copied to clipboard

Firebase Authentication Strategy for NestJS Passport Integration

Results 4 nestjs-firebase-auth issues
Sort by recently updated
recently updated
newest added
trafficstars

hi, what's the proper way to inject FIREBASE_ADMIN_INJECT in unit tests? I have a controller ``` @Controller('users') export class UsersController { constructor( @Inject(FIREBASE_ADMIN_INJECT) private firebaseAdmin: FirebaseAdminSDK, ) {} } ```...

updated dependencies of nestjs, firebase-admin, passport, eslint and jest

In the Readme file say that we have to import FirebaseAdminCoreModule but this module is not exported. `import { FirebaseAdminCoreModule } from '@tfarras/nestjs-firebase-admin';` I'm not sure, because I'm still implementing...