Yannick Majoros

Results 9 issues of Yannick Majoros

This code from `authorization-code.ts` failed: ``` const arr = new Uint8Array(32); crypto.webcrypto.getRandomValues(arr); return base64Url(arr); ``` So I had to create my own solution: ``` function generateCodeVerifier() { const emptyCodeVerifierArray =...

bug

There seems to be currently no way of getting endpoint URLs from the discovery document for some entries, e.g.: endSessionEndpoint etc. As not all endpoints are specified and we can...

For openid-connect, the spec specifies that the endpoint should be `/.well-known/openid-configuration` This conflicts with the currently default path, which seems to suit OAuth2 well though. I suggest adding a flag...

enhancement

### Discussed in https://github.com/quarkusio/quarkus/discussions/38601 Originally posted by **ymajoros** February 6, 2024 Hello, I recently migrated our main application to Quarkus. It does work quite well, but I'm wondering why I...

kind/question

`SQLExtractor.from(TypedQuery)` didn't work from some of my use cases: for some reason, I got a proxy for my TypedQuery instance, which isn't assignable from QuerySqmImpl. I could solve it with...

I think it would be useful to be able to extract query parameters (also auto-generated sql query parameters from a JPA criteria query, even if it has no explicit parameters)....

### Which @angular/* package(s) are relevant/related to the feature request? @angular/core ### Description I propose some function to run some computation that returns an Observable, and convert it to a...

area: core
cross-cutting: observables
core: reactivity
cross-cutting: signals
core: rxjs interop