diff --git a/app/Models/User.php b/app/Models/User.php index f1fd1d6..8edccdb 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -81,6 +81,7 @@ class User extends Authenticatable implements MustVerifyEmail ->join('systems',['systems.id'=>'addresses.system_id']) ->join('system_user',['system_user.system_id'=>'systems.id']) ->where('system_user.user_id',$this->id) + ->where('systems.active',TRUE) ->ActiveFTN() ->FTN() ->get(); diff --git a/resources/views/dashboard.blade.php b/resources/views/dashboard.blade.php index b5a0b15..3c9d744 100644 --- a/resources/views/dashboard.blade.php +++ b/resources/views/dashboard.blade.php @@ -22,66 +22,67 @@ $user->load(['systems.akas.zone.domain.echoareas','systems.akas.echoareas']);
For your addresses in this domain: {!! $list->pluck('ftn')->join(', ') !!}, you'll need to use the following details:
-- Hub FTN Address - | -- {{ our_address($list->first())->ftn4d }} - | -
---|---|
- Hub FTN Domain - | -- {{ $x }} - | -
- Hub Internet Address - | -- {{ our_hostname($list->first()) }} - | -
- Hub Internet Ports - | -
- BINKP: {{ $setup->binkp_port }} MD5 Mode: {{$setup->optionGet(Binkp::F_MD,'binkp_options') ? 'YES' : 'NO' }} - EMSI: {{ $setup->emsi_port }} Protocol: Zmodem - |
-
For your addresses in this domain: {!! $list->pluck('ftn')->join(', ') !!}, you'll need to use the following details:
++ Hub FTN Address + | ++ {{ our_address($list->first())->ftn4d }} + | +
---|---|
+ Hub FTN Domain + | ++ {{ $x }} + | +
+ Hub Internet Address + | ++ {{ our_hostname($list->first()) }} + | +
+ Hub Internet Ports + | +
+ BINKP: {{ $setup->binkp_port }} MD5 Mode: {{$setup->optionGet(Binkp::F_MD,'binkp_options') ? 'YES' : 'NO' }} + EMSI: {{ $setup->emsi_port }} Protocol: Zmodem + |
+