Hostnames can now be deleted; fixes

This commit is contained in:
Pinga 2023-12-13 18:31:33 +02:00
parent 42fd21e7a5
commit fb19e13297
4 changed files with 94 additions and 8 deletions

View file

@ -210,6 +210,9 @@ $csrfMiddleware = function ($request, $handler) use ($container) {
if ($path && $path === '/webauthn/login/verify') {
return $handler->handle($request);
}
if ($path && $path === '/domain/deletehost') {
return $handler->handle($request);
}
// If not skipped, apply the CSRF Guard
return $csrf->process($request, $handler);