From eaff5c60203305b8caa999bd9b91bc2251bab60c Mon Sep 17 00:00:00 2001 From: Jennie Robinson Faber Date: Sun, 19 Apr 2026 16:30:37 +0100 Subject: [PATCH] feat(activity): add billing_card_updated activity type Required by POST /api/helcim/update-card to persist audit log entries when a member updates their card. --- server/models/activityLog.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/models/activityLog.js b/server/models/activityLog.js index e9a2b80..bb23b72 100644 --- a/server/models/activityLog.js +++ b/server/models/activityLog.js @@ -20,7 +20,8 @@ const ACTIVITY_TYPES = [ 'board_updated', 'connection_requested', 'connection_confirmed', - 'tag_suggested' + 'tag_suggested', + 'billing_card_updated' ] const activityLogSchema = new mongoose.Schema({