(
@Inject(AUTH_CONFIG) private readonly cfg: AuthConfig,
private readonly store: StoreService,
)
| 12 | @Injectable() |
| 13 | export class BootstrapService implements OnModuleInit { |
| 14 | constructor( |
| 15 | @Inject(AUTH_CONFIG) private readonly cfg: AuthConfig, |
| 16 | private readonly store: StoreService, |
| 17 | ) {} |
| 18 | |
| 19 | onModuleInit(): void { |
| 20 | const email = this.cfg.bootstrapEmail?.trim().toLowerCase(); |
nothing calls this directly
no outgoing calls
no test coverage detected