diff --git a/app/Helpers/ACLFlags.php b/app/Helpers/ACLFlags.php index 7aa39e3..49810b1 100644 --- a/app/Helpers/ACLFlags.php +++ b/app/Helpers/ACLFlags.php @@ -28,7 +28,7 @@ public function __construct($user = null) $this->isVATUSAStaff = true; } foreach ($user->roles()->get() as $role) { - if (in_array($role->role, ['US1', 'US2', 'US3', 'US4', 'US5', 'US6', 'US7', 'US8', 'US9'])) { + if (in_array($role->role, ['US0', 'US1', 'US2', 'US3', 'US4', 'US5', 'US6', 'US7', 'US8', 'US9'])) { $this->isVATUSAStaff = true; } else if ($role->role == 'USWT') { $this->isVATUSAWebTeam = true;