Auth is now controlled by routing
This commit is contained in:
parent
c034ce6cd4
commit
55a2a67b8d
@ -12,11 +12,6 @@ class DomainController extends Controller
|
||||
// http://ftsc.org/docs/frl-1002.001
|
||||
public const NUMBER_MAX = 0x7fff;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
/**
|
||||
* Add or edit a domain
|
||||
*/
|
||||
|
@ -8,11 +8,6 @@ use App\Models\Echoarea;
|
||||
|
||||
class EchoareaController extends Controller
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
/**
|
||||
* Add or edit a echoarea
|
||||
*/
|
||||
|
@ -7,11 +7,6 @@ use Illuminate\Http\Request;
|
||||
|
||||
class FileareaController extends Controller
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
/**
|
||||
* Add or edit a echoarea
|
||||
*/
|
||||
|
@ -18,11 +18,6 @@ use App\Rules\{FidoInteger,TwoByteInteger};
|
||||
|
||||
class SystemController extends Controller
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
/**
|
||||
* Add an address to a system
|
||||
*
|
||||
|
@ -9,11 +9,6 @@ use App\Models\{Address,Zone};
|
||||
|
||||
class ZoneController extends Controller
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
/**
|
||||
* Add or edit a node
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user