Added registrar deposit option via crypto

This commit is contained in:
Pinga 2024-02-13 14:44:04 +02:00
parent b2859bbfc3
commit bb032c71b2
6 changed files with 250 additions and 1 deletions

View file

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