Skip to content

Add duo_pro_trials_for_free_plans feature flag

What does this MR do and why?

Create duo_pro_trials_for_free_plans feature flag to control Duo Pro trials for free tier namespaces on Gitlab.com

MR acceptance checklist

Please evaluate this MR against the MR acceptance checklist. It helps you analyze changes to reduce risks in quality, performance, reliability, security, and maintainability.

Screenshots or screen recordings

Screenshots are required for UI changes, and strongly recommended for all other merge requests.

free paid
Screenshot_2024-03-01_at_15.18.19 Screenshot_2024-03-01_at_15.39.16

How to set up and validate locally

  • Setup GDK to simulate SaaS.

    bin/rails c
    
    Feature.disable(:duo_pro_trials)
    Feature.disable(:duo_pro_trials_for_free_plans)
  • Sign in. Create new group on free plan.

  • Visit billing page.

  • Make sure there is no Start a free GitLab Duo Pro trial button.

    bin/rails c
    
    Feature.enable(:duo_pro_trials)
  • Make sure there is no Start a free GitLab Duo Pro trial button.

    bin/rails c
    
    Feature.disable(:duo_pro_trials)
    Feature.enable(:duo_pro_trials_for_free_plans)
  • Make sure there is no Start a free GitLab Duo Pro trial button.

    bin/rails c
    
    Feature.enable(:duo_pro_trials)
    Feature.enable(:duo_pro_trials_for_free_plans)
  • Make sure there is Start a free GitLab Duo Pro trial button.

    bin/rails c
    
    Group.last.gitlab_subscription.update(hosted_plan: Plan.find_by(name: 'ultimate'))
  • Make sure there is Start a free GitLab Duo Pro trial button.

    bin/rails c
    
    Feature.disable(:duo_pro_trials_for_free_plans)
  • Make sure there is Start a free GitLab Duo Pro trial button.

    bin/rails c
    
    Feature.disable(:duo_pro_trials)
  • Make sure there is no Start a free GitLab Duo Pro trial button.

Related to #443734

Edited by Serhii Yarynovskyi

Merge request reports