Razvan
08/12/2021, 9:56 AMclass FakeBasicAuthSecurity(realm: String, credentials: Credentials, val name: String = "basicAuth") : Security {
override val filter: Filter = ServerFilters.BasicAuth(realm, credentials )
companion object
}
and I use it in
security = FakeBasicAuthSecurity("Backbone", Credentials("tom", "jerry"))
No Security is added generated spec, any reason why ?dave
08/12/2021, 10:05 AMRazvan
08/12/2021, 10:13 AM