update to login controller to fix issues

updated moons controller to give total worth rather than renter.  Left admin side as renter.
This commit is contained in:
2019-02-23 14:44:44 -06:00
parent 5357746e6b
commit 0bd41458ca
4 changed files with 18 additions and 18 deletions
@@ -276,8 +276,8 @@ class LoginController extends Controller
'corporation_id' => $character_info->corporation_id,
]);
$legacy = AllowedLogin::where(['login_type' => 'Legacy'])->get(['entity_id']);
$renter = AllowedLogin::where(['login_type' => 'Renter'])->get(['entity_id']);
$legacy = AllowedLogin::where(['login_type' => 'Legacy'])->pluck('entity_id')->toArray();
$renter = AllowedLogin::where(['login_type' => 'Renter'])->pluck('entity_id')->toArray();
//Send back the appropriate group
if(isset($corp_info->alliance_id)) {