Rework DomainController/UserController methods and paths, no functional changes
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
<p>In FTN network addresses, a domain is the 5th dimension and used when a system supports 5D addressing, ie: zone:net/node.point@<strong class="highlight">domain</strong>.</p>
|
||||
<p>Domains are used with zones to uniquely identify a FTN network.</p>
|
||||
<p><small>Some legacy Fidonet software is not 5D aware and may behave unexpectedly when a domain is used</small></p>
|
||||
<p>This system is aware of the following domains @can('admin',(new \App\Models\Domain))(you can <a href="{{ url('ftn/domain/addedit') }}">add</a> more)@endcan:</p>
|
||||
<p>This system is aware of the following domains @can('admin',(new \App\Models\Domain))(you can <a href="{{ url('domain/addedit') }}">add</a> more)@endcan:</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
<div class="col-9">
|
||||
@if (\App\Models\Domain::count() === 0)
|
||||
@can('admin',(new \App\Models\Domain))
|
||||
<p>There are no domains setup, to <a href="{{ url('ftn/domain/addedit') }}">set up your first</a>.</p>
|
||||
<p>There are no domains setup, to <a href="{{ url('domain/addedit') }}">set up your first</a>.</p>
|
||||
@else
|
||||
<p class="pad">There are no domains - you need to ask an admin to create one for you.</p>
|
||||
@endcan
|
||||
@@ -37,7 +37,7 @@
|
||||
<tbody>
|
||||
@foreach (\App\Models\Domain::orderBy('name')->with(['zones'])->get() as $oo)
|
||||
<tr>
|
||||
<td><a href="{{ url('ftn/domain/addedit',[$oo->id]) }}">{{ $oo->id }}</a></td>
|
||||
<td><a href="{{ url('domain/addedit',[$oo->id]) }}">{{ $oo->id }}</a></td>
|
||||
<td>{{ $oo->name }}</td>
|
||||
<td>{{ $oo->active ? 'YES' : 'NO' }}</td>
|
||||
<td>{{ $oo->dnsdomain }}</td>
|
||||
|
Reference in New Issue
Block a user