Scope Frontdesk team members and add mailbox invite picker.
Deploy Ladill Frontdesk / deploy (push) Successful in 38s

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-14 21:59:57 +00:00
co-authored by Cursor
parent a40e1f05c1
commit 1ec397d292
8 changed files with 237 additions and 15 deletions
@@ -286,7 +286,10 @@ class SsoLoginController extends Controller
private function resolveLanding(IdentityTeamClient $identity, User $user, string $intended): string
{
try {
return $identity->postAuthRedirect($user->ownerRef(), $intended);
$access = $identity->appAccess($user->ownerRef(), $intended);
\App\Support\StaffUx::remember($access);
return $access['url'] !== '' ? $access['url'] : $intended;
} catch (\Throwable) {
return $intended;
}