mirror of
https://github.com/anonaddy/anonaddy
synced 2026-05-03 12:52:02 +02:00
19 lines
348 B
PHP
19 lines
348 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
class DomainVerificationController extends Controller
|
|
{
|
|
public function __construct()
|
|
{
|
|
$this->middleware('throttle:1,1');
|
|
}
|
|
|
|
public function checkSending($id)
|
|
{
|
|
$domain = user()->domains()->findOrFail($id);
|
|
|
|
return $domain->checkVerificationForSending();
|
|
}
|
|
}
|