Skip to content

Commit

Permalink
removed captcha validation from storeAnonymous route
Browse files Browse the repository at this point in the history
  • Loading branch information
Geist5000 committed Nov 19, 2022
1 parent 396175b commit a4c74cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/UserController.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public function store(Request $request, EmailService $emailService, UserService
*/
public function storeAnonymous(Request $request, UserService $userService, CaptchaService $captchaService): Response
{
$captchaService->checkRequest($request);
// $captchaService->checkRequest($request);
$password = md5(microtime());
$u = $userService->createAnonymousUser($password);
$u->save();
Expand Down

0 comments on commit a4c74cc

Please sign in to comment.