Add Zed Pro Trial Upsell (#29938)

This PR adds an upsell to try Zed Pro

Release Notes:

- N/A

---------

Co-authored-by: Marshall Bowers <git@maxdeviant.com>
This commit is contained in:
Nate Butler 2025-05-05 18:46:54 -04:00 committed by GitHub
parent b4653c15b8
commit 9568fa1166
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 714 additions and 14 deletions

View file

@ -713,6 +713,10 @@ impl UserStore {
self.current_plan
}
pub fn trial_started_at(&self) -> Option<DateTime<Utc>> {
self.trial_started_at
}
pub fn usage_based_billing_enabled(&self) -> Option<bool> {
self.is_usage_based_billing_enabled
}