Domain update improvements, dnssec records can be deleted now

This commit is contained in:
Pinga 2023-12-15 08:21:11 +02:00
parent be28985948
commit 9a45cdab9e
4 changed files with 121 additions and 13 deletions

View file

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