2
0
Files
cal/calcom/apps/web/server/lib/auth/sso/direct/getServerSideProps.tsx

11 lines
205 B
TypeScript
Raw Permalink Normal View History

2024-08-09 00:39:27 +02:00
import { samlProductID, samlTenantID } from "@calcom/features/ee/sso/lib/saml";
export async function getServerSideProps() {
return {
props: {
samlTenantID,
samlProductID,
},
};
}