collab: Add ability to initiate a checkout session for the Zed Free plan (#29767)

This PR adds the ability to initiate a checkout session for the Zed Free
plan.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-05-01 19:35:23 -04:00 committed by GitHub
parent 8d4d3badf3
commit 758d260cec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 29 additions and 0 deletions

View file

@ -256,6 +256,7 @@ async fn list_billing_subscriptions(
enum ProductCode {
ZedPro,
ZedProTrial,
ZedFree,
}
#[derive(Debug, Deserialize)]
@ -386,6 +387,11 @@ async fn create_billing_subscription(
)
.await?
}
Some(ProductCode::ZedFree) => {
stripe_billing
.checkout_with_zed_free(customer_id, &user.github_login, &success_url)
.await?
}
None => {
let default_model = llm_db.model(
zed_llm_client::LanguageModelProvider::Anthropic,