From 6c10b93c9dc25c8619fb7730f72dd29967e7a6dd Mon Sep 17 00:00:00 2001 From: NguyenND Date: Sun, 28 Jun 2026 18:09:35 -0400 Subject: [PATCH] Jun 28 - Update cli.py --- control/cli.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/control/cli.py b/control/cli.py index bbd06b1..9f6834d 100644 --- a/control/cli.py +++ b/control/cli.py @@ -31,11 +31,13 @@ def _cmd_list_plans(_args): print('No plans found. Run: python -m control.cli seed') return for p in plans: + price = p.stripe_price_id or '(not set)' print(f' [{p.code}] {p.name} ' f'users={p.max_users} facilities={p.max_facilities} ' f'insp/mo={p.max_inspections_month} issues/mo={p.max_issues_month} ' f'custom_domain={p.allow_custom_domain} mobile={p.allow_mobile_api} ' - f'sched_reports={p.allow_scheduled_reports} branding={p.allow_branding}') + f'sched_reports={p.allow_scheduled_reports} branding={p.allow_branding} ' + f'stripe_price_id={price}') def _cmd_create_superadmin(args):