Skip to content
Snippets Groups Projects
Commit 9ced0bb6 authored by jurgenhaas's avatar jurgenhaas
Browse files

#71 Disable basic auth in local dev environment

parent 1c383e41
No related branches found
No related tags found
1 merge request!94Merging develop into main
Pipeline #1180144 passed with warnings
......@@ -303,6 +303,11 @@ class Handler extends BaseHandler {
}
$this->config->setValue('alerta', $alerta, FALSE);
}
// Turn off basic auth in local dev environment.
if ($this->isLocalDevMode()) {
$this->config->setValue('basicauth', ['enable' => FALSE], FALSE);
}
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment