fix(launchpad): exclude admin console from guest launchpad cards

This commit is contained in:
Tyler Gillispie 2026-08-28 00:19:24 -07:00
parent 3af104915f
commit f42df098d7

View File

@ -234,6 +234,7 @@ export const getDashboardApps = async (
return await sqlWrapper.sql`
SELECT id, name, description, COALESCE(domain, name || '.atyg.org') as domain, 'Guest (Viewer)' as role
FROM apps
WHERE spiffe_id != 'spiffe://system.local/auth-yes-management'
ORDER BY name ASC
`;
} else if (appNames.length > 0) {