Auth is now controlled by routing

This commit is contained in:
Deon George 2022-11-26 06:54:24 +07:00
parent c034ce6cd4
commit 55a2a67b8d
5 changed files with 0 additions and 25 deletions

View File

@ -12,11 +12,6 @@ class DomainController extends Controller
// http://ftsc.org/docs/frl-1002.001 // http://ftsc.org/docs/frl-1002.001
public const NUMBER_MAX = 0x7fff; public const NUMBER_MAX = 0x7fff;
public function __construct()
{
$this->middleware('auth');
}
/** /**
* Add or edit a domain * Add or edit a domain
*/ */

View File

@ -8,11 +8,6 @@ use App\Models\Echoarea;
class EchoareaController extends Controller class EchoareaController extends Controller
{ {
public function __construct()
{
$this->middleware('auth');
}
/** /**
* Add or edit a echoarea * Add or edit a echoarea
*/ */

View File

@ -7,11 +7,6 @@ use Illuminate\Http\Request;
class FileareaController extends Controller class FileareaController extends Controller
{ {
public function __construct()
{
$this->middleware('auth');
}
/** /**
* Add or edit a echoarea * Add or edit a echoarea
*/ */

View File

@ -18,11 +18,6 @@ use App\Rules\{FidoInteger,TwoByteInteger};
class SystemController extends Controller class SystemController extends Controller
{ {
public function __construct()
{
$this->middleware('auth');
}
/** /**
* Add an address to a system * Add an address to a system
* *

View File

@ -9,11 +9,6 @@ use App\Models\{Address,Zone};
class ZoneController extends Controller class ZoneController extends Controller
{ {
public function __construct()
{
$this->middleware('auth');
}
/** /**
* Add or edit a node * Add or edit a node
*/ */