From 16aa09ba306d9b930b87de40e1114982c85aa901 Mon Sep 17 00:00:00 2001 From: S Mae Beale Date: Sun, 9 Aug 2026 16:51:14 -0400 Subject: [PATCH 1/3] Update facilitator-fees FAQ default for per-person dues (#2095) The old copy described a $100 per-program membership that covered all facilitators in a program. PR #2094 replaces that with a per-person, auto-renewing annual dues subscription, so the default FAQ answer is now inaccurate. Rework the answer to describe per-facilitator annual dues. Amount is intentionally omitted pending AWBW confirmation of the final per-person figure (production dues are still disabled). Co-Authored-By: Claude Opus 4.8 (1M context) --- app/services/builtin_callouts.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/services/builtin_callouts.rb b/app/services/builtin_callouts.rb index a48f0d7e3d..d153424836 100644 --- a/app/services/builtin_callouts.rb +++ b/app/services/builtin_callouts.rb @@ -50,8 +50,8 @@ class BuiltinCallouts a: [ "Yes. Multiple staff members from the same organization are welcome and encouraged to participate in the training.", "Many organizations choose to train teams of staff members in order to integrate trauma-informed healing arts practices more broadly across their programs, services, and communities." ] }, { q: "Are there any fees, other than the training fee, associated with becoming a facilitator?", - a: [ "AWBW has an annual membership fee of $100 per program to support the sustainability of the organization and continued facilitator resources and support.", - "The membership fee covers all facilitators connected to the same program or organization for the calendar year, regardless of the number of facilitators participating. Only one membership fee payment is required per program annually." ] } + a: [ "AWBW facilitators pay annual dues to support the sustainability of the organization and continued facilitator resources and support.", + "Dues are billed per facilitator and renew automatically each year. You can manage or cancel your subscription at any time." ] } ].freeze # Hidden Resource (by title) backing the handout links, in display order. From 37f8425f5486e4412316110d5a7a8588bd9fd581 Mon Sep 17 00:00:00 2001 From: S Mae Beale Date: Sun, 9 Aug 2026 17:25:59 -0400 Subject: [PATCH 2/3] Add confirmed $25 per-person dues amount to FAQ copy Co-Authored-By: Claude Opus 4.8 (1M context) --- app/services/builtin_callouts.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/services/builtin_callouts.rb b/app/services/builtin_callouts.rb index d153424836..cb1ea40002 100644 --- a/app/services/builtin_callouts.rb +++ b/app/services/builtin_callouts.rb @@ -50,7 +50,7 @@ class BuiltinCallouts a: [ "Yes. Multiple staff members from the same organization are welcome and encouraged to participate in the training.", "Many organizations choose to train teams of staff members in order to integrate trauma-informed healing arts practices more broadly across their programs, services, and communities." ] }, { q: "Are there any fees, other than the training fee, associated with becoming a facilitator?", - a: [ "AWBW facilitators pay annual dues to support the sustainability of the organization and continued facilitator resources and support.", + a: [ "AWBW facilitators pay annual dues of $25 to support the sustainability of the organization and continued facilitator resources and support.", "Dues are billed per facilitator and renew automatically each year. You can manage or cancel your subscription at any time." ] } ].freeze From 34675cc689c66d142842809c8c0d4c22cb26d747 Mon Sep 17 00:00:00 2001 From: S Mae Beale Date: Sun, 9 Aug 2026 17:31:24 -0400 Subject: [PATCH 3/3] Source FAQ membership fee from Membership::ANNUAL_COST_CENTS Derive the amount from the constant so the default copy can't drift from the real per-person figure years from now, and use membership terminology to match the post-#2106 rename. Co-Authored-By: Claude Opus 4.8 (1M context) --- app/services/builtin_callouts.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/services/builtin_callouts.rb b/app/services/builtin_callouts.rb index cb1ea40002..b12297a54f 100644 --- a/app/services/builtin_callouts.rb +++ b/app/services/builtin_callouts.rb @@ -49,9 +49,11 @@ class BuiltinCallouts { q: "Can multiple staff members from one organization participate?", a: [ "Yes. Multiple staff members from the same organization are welcome and encouraged to participate in the training.", "Many organizations choose to train teams of staff members in order to integrate trauma-informed healing arts practices more broadly across their programs, services, and communities." ] }, + # Amount is sourced from Membership::ANNUAL_COST_CENTS so this default copy + # tracks the real per-person figure instead of drifting from a hard-coded number. { q: "Are there any fees, other than the training fee, associated with becoming a facilitator?", - a: [ "AWBW facilitators pay annual dues of $25 to support the sustainability of the organization and continued facilitator resources and support.", - "Dues are billed per facilitator and renew automatically each year. You can manage or cancel your subscription at any time." ] } + a: [ "AWBW facilitators pay an annual membership fee of #{MoneyFormatter.dollars_from_cents(::Membership::ANNUAL_COST_CENTS)} to support the sustainability of the organization and continued facilitator resources and support.", + "The membership fee is billed per facilitator and renews automatically each year. You can manage or cancel your membership at any time." ] } ].freeze # Hidden Resource (by title) backing the handout links, in display order.