Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Commit

Permalink
feat(features): Document trial plan tiers (#1075)
Browse files Browse the repository at this point in the history
* Document trial plan properties
* Clarify plan flags
  • Loading branch information
gggritso authored Nov 6, 2023
1 parent 19bc236 commit f0bb60e
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions src/docs/feature-flags/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -362,15 +362,23 @@ Enabling a feature for customers on specific plans can be done by creating a
segment using plan properties. There are a few plan related properties you can
use:

* `subscription_is-free` Whether or not the account is on a free plan.
* `subscription_is-free` Whether or not the main account subscription is on a
free plan.
* `subscription_channel` Which billing channel an organization is on. The values
of this can be found on the `Subscription` model.
* `subscription_plan-family` This is one of `free`, `team` or `business` or
None.
* `subscription_plan-tier` This is the plan tier eg. `am1`.
* `subscription_plan-family` This is the plan family of the main subscription.
One of `free`, `team` or `business` or None.
* `subscription_plan-tier` This is the plan tier of the main subscription eg. `am1`.
* `subscription_plan-trial-plan-family` Family for the plan trial, if one exists.
* `subscription_plan-trial-plan-tier` Tier for the plan trial, if one exists.
* `subscription_plan` This property is deprecated and should not be used in new
feature flags.

_Note:_ Some customers may have both a regular plan for their main subscription
_and_ a plan trial. If you need to target a plan tier, (e.g., `"am2"` you
should create Flagr constraints for both the `subscription_plan-tier` property
_and_ the `subscription_plan-trial-plan-tier` property.)

![enable plan subset](../img/flagrPlanSubset.png)

### Releasing to organizations incrementally
Expand Down

1 comment on commit f0bb60e

@vercel
Copy link

@vercel vercel bot commented on f0bb60e Nov 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

develop – ./

develop.sentry.dev
develop-git-master.sentry.dev

Please sign in to comment.