Added ability to manage custom registrar pricing from panel; fixed #163

This commit is contained in:
Pinga 2025-04-01 11:59:10 +03:00
parent acc7d74b32
commit de89a9e3b4
5 changed files with 314 additions and 97 deletions

View file

@ -304,6 +304,9 @@ $csrfMiddleware = function ($request, $handler) use ($container) {
if ($path && $path === '/clear-cache') {
return $handler->handle($request);
}
if (str_starts_with($path, '/registrar/updatepricing/')) {
return $handler->handle($request);
}
if ($path && $path === '/token-well') {
$csrf->generateToken();
return $handler->handle($request);