Files
plane/web/ee/constants/license.ts
Nikhil 8241bf7c42 chore: free trial (#821)
* chore: free trail subscription

* fix: slug remove from the data and convert uuid to string for members_list

* chore: implemented free trail in subscription

* chore: handled error and success modal

* chore: pro plan loader and error handling

---------

Co-authored-by: gurusainath <gurusainath007@gmail.com>
2024-08-13 18:57:17 +05:30

99 lines
1.5 KiB
TypeScript

export const PRO_PLAN_FEATURES_MAP = [
{
label: "Active Cycles + other Cycles features",
comingSoon: false,
},
{
label: "Workspace pages",
comingSoon: false,
},
{
label: "Bulk ops",
comingSoon: false,
},
{
label: "Shared and public pages",
comingSoon: false,
},
{
label: "Time tracking",
comingSoon: false,
},
{
label: "Importers + integrations",
comingSoon: true,
},
{
label: "Customizable dashboards",
comingSoon: true,
},
{
label: "Workflow manager",
comingSoon: true,
},
{
label: "On-demand reports",
comingSoon: false,
},
{
label: "Automations",
comingSoon: true,
},
{
label: "Shared and public views",
comingSoon: false,
},
{
label: "Plane AI",
comingSoon: false,
},
];
// blank labels are intentional
export const ONE_TO_PRO_PLAN_FEATURES_MAP = [
{
label: "More Cycles features",
comingSoon: false,
},
{
label: "Popular integrations",
comingSoon: false,
},
{
label: "Full bulk Ops",
comingSoon: false,
},
{
label: "Automations",
comingSoon: false,
},
{
label: "Customizable dashboards",
comingSoon: false,
},
{
label: "Plane AI",
comingSoon: false,
},
{
label: "On-demand reports",
comingSoon: false,
},
{
label: "",
comingSoon: false,
},
{
label: "Workspace pages",
comingSoon: false,
},
{
label: "",
comingSoon: false,
},
{
label: "Workflow manager",
comingSoon: false,
},
];