From 6167fb03c18f147e325f8a16a2b956c2b64367d3 Mon Sep 17 00:00:00 2001 From: Jon Date: Mon, 3 Jun 2024 19:19:54 -0700 Subject: [PATCH] US0 should do something --- app/Helpers/ACLFlags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;