Skip to content

Commit ca58638

Browse files
authored
chore: add SOC 2 to upgrade page (#8458)
1 parent 87abe4e commit ca58638

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

packages/app/src/app/components/WorkspaceSetup/steps/Plans.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -738,6 +738,12 @@ const FeaturesComparison: React.FC<{ plans: PricingPlanFeatures[] }> = ({
738738
plans={plans}
739739
property="sso"
740740
/>
741+
<FeatureComparisonBooleanRow
742+
title="SOC 2 compliance"
743+
description="Ensure the security of your data with our SOC 2 Type II compliance."
744+
plans={plans}
745+
property="soc2"
746+
/>
741747

742748
<FeatureComparisonBooleanRow
743749
title="Private cloud"

packages/app/src/app/components/WorkspaceSetup/steps/constants.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export type PricingPlanFeatures = {
1818
apiAccess: boolean;
1919
protectedPreviews: boolean;
2020
sso: boolean;
21+
soc2: boolean;
2122
privateCloud: boolean;
2223
onPremise: boolean;
2324
instantEnvironmentResume: boolean;
@@ -42,6 +43,7 @@ export const FREE_FEATURES: PricingPlanFeatures = {
4243
apiAccess: true,
4344
protectedPreviews: false,
4445
sso: false,
46+
soc2: true,
4547
privateCloud: false,
4648
onPremise: false,
4749
instantEnvironmentResume: true,
@@ -67,6 +69,7 @@ export const PRO_FEATURES: PricingPlanFeatures = {
6769
apiAccess: true,
6870
protectedPreviews: false,
6971
sso: false,
72+
soc2: true,
7073
privateCloud: false,
7174
onPremise: false,
7275
instantEnvironmentResume: true,
@@ -91,6 +94,7 @@ export const ENTERPRISE_FEATURES: PricingPlanFeatures = {
9194
apiAccess: true,
9295
protectedPreviews: true,
9396
sso: true,
97+
soc2: true,
9498
privateCloud: true,
9599
onPremise: true,
96100
instantEnvironmentResume: true,

packages/app/src/app/overmind/namespaces/checkout/constants.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ export const ENTERPRISE_PLAN: PricingPlan = {
6868
'On-premise options',
6969
'Private managed cloud',
7070
'Dedicated support',
71+
'SOC 2 Type II compliant',
7172
'SSO',
7273
],
7374
};

0 commit comments

Comments
 (0)