Allow basic auth

Signed-off-by: William Brawner <me@wbrawner.com>
This commit is contained in:
William Brawner 2020-03-02 01:42:51 +00:00
parent cc5c8b3da1
commit 94d2111ca6

View file

@ -63,6 +63,8 @@ open class SecurityConfig(
.anyRequest() .anyRequest()
.authenticated() .authenticated()
.and() .and()
.httpBasic()
.and()
.cors() .cors()
.configurationSource { .configurationSource {
with(CorsConfiguration()) { with(CorsConfiguration()) {