the Or method should be ``` fun Security.or(that: ...
# http4k
d
the Or method should be
Copy code
fun Security.or(that: Security): Security = when (this) {
    is OrSecurity -> OrSecurity(this + that)
    else -> OrSecurity(listOf(this) + that)
}