fun getOwner()

in core/scm-owner/src/main/java/io/klibs/core/owner/ScmOwnerController.kt [22:31]


    fun getOwner(
        @PathVariable("login")
        @Parameter(
            description = "Login of the owner (same as the scm/github login)",
            example = "Kotlin"
        )
        login: String
    ): ScmOwnerDTO? {
        return ownerService.getOwner(login)?.toDTO()
    }