Compare commits

..

2 Commits

Author SHA1 Message Date
058b4ac4b9 Fix for 4bbb826 command syntax for Comm* commands was displaying incorrectly
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 2m46s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 3m50s
Create Docker Image / Final Docker Image Manifest (push) Successful in 11s
2025-01-07 11:13:31 +11:00
b27d983fe6 Order dashboard systems by name 2024-12-20 16:06:38 +07:00
4 changed files with 9 additions and 6 deletions

View File

@ -17,8 +17,8 @@ class CommBinkpSend extends Command
* @var string
*/
protected $signature = 'comm:binkp:send'
.'{--N|now : Dont queue}'
.'{ftn : FTN to Send to}';
.' {--N|now : Dont queue}'
.' {ftn : FTN to Send to}';
/**
* The console command description.

View File

@ -17,8 +17,8 @@ class CommEMSISend extends Command
* @var string
*/
protected $signature = 'comm:emsi:send'
.'{--N|now : Dont queue}'
.'{ftn : FTN to Send to}';
.' {--N|now : Dont queue}'
.' {ftn : FTN to Send to}';
/**
* The console command description.

View File

@ -70,7 +70,8 @@ class User extends Authenticatable implements MustVerifyEmail
public function systems()
{
return $this->belongsToMany(System::class);
return $this->belongsToMany(System::class)
->orderBy('name');
}
/* GENERAL METHODS */

View File

@ -1,3 +1,5 @@
@use(App\Models\Domain)
<div id="sidebar-scroller">
FTN Networks
@ -12,7 +14,7 @@
@endif
@endauth
@if(($x=\App\Models\Domain::select(['id','name'])
@if(($x=Domain::select(['id','name'])
->when(((! $user) || (! $user->isAdmin())),fn($query)=>$query->public()->active())
->orderBy('name')
->get())