(
private store: StoreService,
@Inject(AUTH_CONFIG) private cfg: AuthConfig,
)
| 34 | @Injectable() |
| 35 | export class AuthService { |
| 36 | constructor( |
| 37 | private store: StoreService, |
| 38 | @Inject(AUTH_CONFIG) private cfg: AuthConfig, |
| 39 | ) {} |
| 40 | |
| 41 | private issue(user: { id: string; email: string }): AuthTokens { |
| 42 | const accessToken = signAccessToken( |
nothing calls this directly
no outgoing calls
no test coverage detected