fix(web): applications-page launcher points at /dashboard, not / #71
No reviewers
Labels
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
psa-systems/bunyip!71
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/applications-launcher-points-at-dashboard"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The
/applicationspage rendered its launcher cards withhref=https://{app_url}(bare host, no path), so clicking through to a child app landed users on the public marketing homepage. The/dashboardpage's launcher already used/dashboard; the two were inconsistent./dashboardis the right target: the child app's AuthGuard sees a protected route, fires the OIDC code flow against the user's existing OP session, and the SSO bridge silently returns them logged in. With/as the target, the user lands on the marketing page and has to click "Sign in" before the bridge can fire.Aligned the
/applicationslauncher with/dashboard's.