2
0
Files
cal/calcom/apps/web/server/lib/auth/sso/direct/getServerSideProps.tsx
2024-08-09 00:39:27 +02:00

11 lines
205 B
TypeScript

import { samlProductID, samlTenantID } from "@calcom/features/ee/sso/lib/saml";
export async function getServerSideProps() {
return {
props: {
samlTenantID,
samlProductID,
},
};
}