Lukáš Moravec
Lukáš Moravec
To make this library multiplatform, we need to replace this parts with multiplatform implementation: - base64 encoding = kotlin stdlib - current time = https://github.com/Kotlin/kotlinx-datetime - cryptography = https://github.com/whyoleg/cryptography-kotlin -...
Is it intended that `null` value is not cached? I think it has to be configurable, because `null` is valid value for me, or am I missing something? Example: ```kotlin...
I think we could make serving SPAs simpler as it is common pattern to use Micronaut for API and bundle SPA frontend application as static resource. My proposed solution is...
### Feature description ## Keycloak 17 In Keycloak 17 the default distribution is [powered by Quarkus](https://www.keycloak.org/2022/02/keycloak-1700-released) and default endpoints has changed (removed the `/auth` prefix) so autoconfiguration of `EndSessionEndpoint` is...
### Feature description https://openid.net/specs/openid-connect-backchannel-1_0.html It is needed when front-channel logout is not always available nowadays (due to SameSite etc.)
### Feature description I think this does make sense, because almost everytime user is logging in, he wants to use login form in the locale that he is already using...
It would be useful to support SVG attributes like: ```kotlin public var SVG.viewBox: String get() = stringAttribute[this, "viewBox"] set(viewBox) { stringAttribute[this, "viewBox"] = viewBox } public var SVG.width: String get()...
In our application, we need to send calendar events together with our emails. For now we are using [Simple Java Mail](https://www.simplejavamail.org/) to compose our messages and send with SMTP. We...
See #36
Hi @whyoleg, thank you very much for this awesome library. I am using snapshot version to convert my [webpush](https://github.com/interaso/webpush) library to multiplatform. I transformed code from Java Security APIs without...