collab: Remove Zed Free as an option when initiating a checkout session (#31638)

This PR removes Zed Free as an option when initiating a checkout
session, as we manage this plan automatically now.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-05-28 19:00:54 -04:00 committed by GitHub
parent 1e25249055
commit 53849cf983
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 31 deletions

View file

@ -283,7 +283,6 @@ async fn list_billing_subscriptions(
enum ProductCode {
ZedPro,
ZedProTrial,
ZedFree,
}
#[derive(Debug, Deserialize)]
@ -380,11 +379,6 @@ async fn create_billing_subscription(
)
.await?
}
ProductCode::ZedFree => {
stripe_billing
.checkout_with_zed_free(customer_id, &user.github_login, &success_url)
.await?
}
};
Ok(Json(CreateBillingSubscriptionResponse {