Brian Setz
Brian Setz
I may have overlooked it, but it looks like the endpoint `https://gitlab.com/users/:username/exists` is not implemented? Example: https://gitlab.com/users/example/exists Which returns: ```json { "exists":true } ``` If it is indeed not available...
I have a very strange problem where I get an exception that only happens in unit tests. When I run the application normally, the exception does not show up. This...
I am observing some unexpected behaviour for nullable (meaning optional) File and Fileuploads. ```Kotlin package org.example import jakarta.ws.rs.POST import jakarta.ws.rs.Path import org.eclipse.microprofile.openapi.annotations.enums.SchemaType import org.eclipse.microprofile.openapi.annotations.media.Schema import org.jboss.resteasy.reactive.RestForm import org.jboss.resteasy.reactive.multipart.FileUpload import java.io.File...