Merge pull request #5694 from maco/5645-domain-block

[Bug Fix] accept bare domains without http scheme in domain block controller
pull/5826/head
daniel 1 month ago committed by GitHub
commit 622116b0cf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -56,7 +56,7 @@ class DomainBlockController extends Controller
abort_if(!$request->user(), 403);
$this->validate($request, [
'domain' => 'required|active_url|min:1|max:120'
'domain' => 'required|min:1|max:120'
]);
$pid = $request->user()->profile_id;

Loading…
Cancel
Save